我已经设置了spring boot web项目。当我只有一个带有所有数据库连接详细信息的application.properties文件时,它运行良好。我正在使用mysql数据库。这是我的application.properties文件。
logging.file=myfilename.log
logging.path=/var/log/mydir
# db1
spring.db1.url=jdbc:mysql://[my_host_ip]/db1
spring.db1.username=my_host_username
spring.db1.password=my_host_password
spring.db1.driver-class-name=com.mysql.jdbc.Driver
# db2
spring.db2.url=jdbc:mysql://[my_host_ip]/db2
spring.db2.username=my_host_username
spring.db2.password=my_host_password
spring.db2.driver-class-name=com.mysql.jdbc.Driver
我想设置不同的环境,例如生产,开发,测试,分期,本地。
根据文件Profile-specific propertie
我创建了5个配置文件特定的属性文件
i) application-production.properties
ii) application-dev.properties
iii) application-test.properties
iv) application-staging.properties
v) application-local.properties
我从默认的application.properties文件中删除了数据库连接属性。
我已在gradle构建中添加此项以允许传递活动配置文件
bootRun {
systemProperties = System.properties
}
当我使用gradle启动项目时
./gradlew clean bootRun -Dspring.profiles.active=test
它可以工作,它连接到测试数据库。
但是在理想的生产场景中,我希望构建带有“test”配置文件的jar文件,以便它运行所有测试并在所有测试通过时创建jar。
e.g。
./gradlew clean build -Dspring.profiles.active=test
然后将jar部署到不同的环境(登台,开发,生产等)并运行
on dev
java -jar myapp.jar -Dspring.profiles.active=dev
on staging
java -jar myapp.jar -Dspring.profiles.active=staging
但是构建失败并出现异常
Caused by: org.springframework.jdbc.CannotGetJdbcConnectionException: Could not get JDBC Connection; nested exception is java.sql.SQLException: The url cannot be null
Caused by: java.sql.SQLException: The url cannot be null
另一个问题是,
如果我在开始时没有进行任何测试,是否可以在不传递任何配置文件选项的情况下构建jar?
./gradlew clean build
它因此异常而失败
com.st.ComputeApplicationTests > contextLoads FAILED
java.lang.IllegalStateException
Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException
Caused by: org.springframework.beans.factory.BeanCreationException
Caused by: org.springframework.beans.BeanInstantiationException
Caused by: org.springframework.beans.factory.BeanCreationException
Caused by: org.springframework.beans.BeanInstantiationException
Caused by: org.springframework.jdbc.CannotGetJdbcConnectionException
Caused by: java.sql.SQLException
更新
正如@Alex的评论所示,
“ComputeApplicationTests使用@SpringBootTest进行注释,并且未指定任何ActiveProfiles。它无法在默认配置文件中找到适当的配置并失败”
mport org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@SpringBootTest
public class ComputeApplicationTests {
@Test
public void contextLoads() {
}
}
暂时删除测试make build。