我正在使用Spring Boot 2.0.5。我正在使用嵌入式tomcat构建应用程序。我有一个要求,在启动应用程序时,需要将数据源URL指定为jar的命令行参数。由于该应用程序打算在各种客户的桌面上运行,并且几乎没有数据库可以使用该应用程序实例。
我面临的一个问题是,Spring Boot总是从application.properties中选择值,而不是按照我在命令行中指定的值覆盖其值。
如何通过命令行中指定的属性使spring覆盖数据源属性?
我还尝试传递命令行参数
java -jar my_app.jar --server.port=8080 --spring.datasource.url=jdbc:mysql://localhost:3306/ssm-entp
下面是我的数据源XML配置。
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd">
<!-- <bean id="dataSource"
class="org.springframework.jdbc.datasource.DriverManagerDataSource"> -->
<context:property-placeholder location="file:application.properties" />
<bean id="dataSource"
class="org.apache.commons.dbcp2.BasicDataSource" destroy-method="close">
<property name="driverClassName" value="com.mysql.jdbc.Driver" />
<property name="url" value="${spring.datasource.url}" />
<property name="username" value="root" />
<property name="password" value="password" />
<property name="maxTotal" value="10" />
<property name="maxIdle" value="5" />
<!-- <property name="initialSize" value="1" />
<property name="maxActive" value="5" /> -->
</bean>