问题:TenantRoutingProperties 定义了配置但未被使用 解决方案: 1. TenantAwareLoadBalancer 注入 TenantRoutingProperties - 使用配置的 tenantHeader 名称 - 使用配置的 buildTenantGroup 方法 - 使用配置的 isSharedService 判断 - 使用配置的 isFallbackToShared 策略 2. 新增功能 - 支持 enabled=false 禁用租户路由 - 共享服务跳过租户过滤 - 可配置是否回退到共享实例 3. 更新测试适配新构造函数
211 lines
7.7 KiB
XML
211 lines
7.7 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>javax.validation</groupId>
|
|
<artifactId>validation-api</artifactId>
|
|
<version>1.1.0.Final</version>
|
|
<packaging>jar</packaging>
|
|
<name>Bean Validation API</name>
|
|
<url>http://beanvalidation.org</url>
|
|
|
|
<description>
|
|
Bean Validation API
|
|
</description>
|
|
|
|
<developers>
|
|
<developer>
|
|
<id>epbernard</id>
|
|
<name>Emmanuel Bernard</name>
|
|
<email>emmanuel@hibernate.org</email>
|
|
<organization>JBoss, by Red Hat</organization>
|
|
<url>http://in.relation.to/Bloggers/Emmanuel</url>
|
|
</developer>
|
|
<developer>
|
|
<id>emmanuelbernard</id>
|
|
<name>Emmanuel Bernard</name>
|
|
<email>emmanuel@hibernate.org</email>
|
|
<organization>JBoss, by Red Hat</organization>
|
|
<url>http://in.relation.to/Bloggers/Emmanuel</url>
|
|
</developer>
|
|
<developer>
|
|
<id>hardy.ferentschik</id>
|
|
<name>Hardy Ferentschik</name>
|
|
<email>hferents@redhat.com</email>
|
|
<organization>JBoss, by Red Hat</organization>
|
|
<url>http://in.relation.to/Bloggers/Hardy</url>
|
|
</developer>
|
|
<developer>
|
|
<id>gunnar.morling</id>
|
|
<name>Gunnar Morling</name>
|
|
<email>gunnar@hibernate.org</email>
|
|
<organization>JBoss, by Red Hat</organization>
|
|
<url>http://www.gunnarmorling.de/</url>
|
|
</developer>
|
|
</developers>
|
|
|
|
<issueManagement>
|
|
<system>JIRA</system>
|
|
<url>http://opensource.atlassian.com/projects/hibernate/browse/BVAL</url>
|
|
</issueManagement>
|
|
|
|
<inceptionYear>2007</inceptionYear>
|
|
|
|
<licenses>
|
|
<license>
|
|
<name>The Apache Software License, Version 2.0</name>
|
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
</license>
|
|
</licenses>
|
|
|
|
<scm>
|
|
<connection>scm:git:git://github.com/beanvalidation/beanvalidation-api.git</connection>
|
|
<developerConnection>scm:git:git@github.com:beanvalidation/beanvalidation-api.git</developerConnection>
|
|
<url>https://github.com/beanvalidation/beanvalidation-api</url>
|
|
<tag>1.1.0.Final</tag>
|
|
</scm>
|
|
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>jboss-releases-repository</id>
|
|
<name>JBoss Releases Repository</name>
|
|
<url>https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/</url>
|
|
</repository>
|
|
<snapshotRepository>
|
|
<id>jboss-snapshots-repository</id>
|
|
<name>JBoss Snapshots Repository</name>
|
|
<url>https://repository.jboss.org/nexus/content/repositories/snapshots/</url>
|
|
</snapshotRepository>
|
|
</distributionManagement>
|
|
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.testng</groupId>
|
|
<artifactId>testng</artifactId>
|
|
<version>6.8</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.felix</groupId>
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
|
<version>2.3.7</version>
|
|
<configuration>
|
|
<instructions>
|
|
<Export-Package>
|
|
javax.validation.*;version="${project.version}",
|
|
</Export-Package>
|
|
</instructions>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>bundle-manifest</id>
|
|
<phase>process-classes</phase>
|
|
<goals>
|
|
<goal>manifest</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.0</version>
|
|
<configuration>
|
|
<source>1.6</source>
|
|
<target>1.6</target>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>2.13</version>
|
|
<configuration>
|
|
<forkMode>once</forkMode>
|
|
<redirectTestOutputToFile>true</redirectTestOutputToFile>
|
|
<includes>
|
|
<include>**/*Test.java</include>
|
|
</includes>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>2.4</version>
|
|
<configuration>
|
|
<archive>
|
|
<manifestFile>${basedir}/target/classes/META-INF/MANIFEST.MF</manifestFile>
|
|
</archive>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
<version>2.2.1</version>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-sources</id>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<version>2.9</version>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-javadocs</id>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<links>
|
|
<link>http://docs.oracle.com/javase/6/docs/api</link>
|
|
</links>
|
|
<packagesheader>Bean Validation API Packages</packagesheader>
|
|
<doctitle>Bean Validation API ${project.version}</doctitle>
|
|
<windowtitle>Bean Validation API ${project.version}</windowtitle>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-install-plugin</artifactId>
|
|
<version>2.4</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
<version>2.4</version>
|
|
<configuration>
|
|
<allowTimestampedSnapshots>true</allowTimestampedSnapshots>
|
|
<remoteTagging>true</remoteTagging>
|
|
<goals>deploy</goals>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>release</id>
|
|
<properties>
|
|
<createChecksum>true</createChecksum>
|
|
</properties>
|
|
</profile>
|
|
</profiles>
|
|
|
|
</project>
|