Spring Java配置和maven变量

时间:2017-10-02 12:49:33

标签: spring maven

我使用settings.xml中的变量

进行XML Spring配置
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:context="http://www.springframework.org/schema/context" xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd">

    <import resource="/spring-ds-${usingDb}.xml" />
...
</beans>

$ {usingDb}来自settings.xml maven文件

我想在Spring java配置类

中做同样的事情

1 个答案:

答案 0 :(得分:0)

我认为唯一的办法就是在像这样的属性文件中设置密钥。

database.datasource=${key.datasource}
database.dialect=${key.database.dialect}
....

如果有人有更好的建议,欢迎你