我有一个使用另一个项目的 Spring 项目。每个项目都有自己的 spring 配置文件,使用每个配置文件的 applicationContext.xml
和 *.properties
从 java 代码初始化。我从 args[]
注入配置文件。 问题是第二个项目使用来自 applicationContext.xml
的 env 的默认配置我无法将 args[]
中的 env 注入到第二个项目中,我尝试寻找一篇解释弹簧型材有效。
当在 applicationContext.xml 中未配置默认值时,是否有一个层次结构将在其上查看配置文件? System var 是否比 applicationContext.xml 配置强?你认为对我的挑战最好的解决方案是什么?
关于该主题的文章甚至示例将不胜感激!提前致谢。
SPRING_PROFILES_ACTIVE 是覆盖/选择 Spring 配置文件的环境变量
如果您为您的 JVM 提供 Spring 配置文件,则应该没有问题:
java -Dspring.profiles.active=development -jar yourApplication.jar
另请参阅 Spring 文档:
69.5 设置活动的 Spring 配置文件 Spring Environment 有一个 API 用于此,但通常你会设置一个系统属性 (spring.profiles.active) 或一个操作系统环境变量 (SPRING_PROFILES_ACTIVE)。例如,使用 -D 参数启动您的应用程序(记得将其放在主类或 jar 存档之前): $ java -jar -Dspring.profiles.active=production demo-0.0.1-SNAPSHOT.jar 在 Spring Boot 中,您还可以在 application.properties 中设置活动配置文件,例如 spring.profiles.active=production 以这种方式设置的值将被系统属性或环境变量设置替换,但不会被 SpringApplicationBuilder.profiles() 方法替换。因此,后一种 Java API 可用于在不更改默认值的情况下扩充配置文件。有关更多信息,请参阅第 25 章“Spring Boot 特性”部分中的配置文件。
我通常使用基于注释的配置而不是基于 XML 的配置来配置 applicationContext。无论如何,我相信他们都有相同的优先级。
*回答您的问题,系统变量具有更高的优先级*
从 applicationContext 获取基于配置文件的 bean
在 Bean 上使用 @Profile
@Component
@Profile("dev")
public class DatasourceConfigForDev
现在,配置文件是 dev
注意:如果配置文件作为 @Profile("!dev")
给出,那么配置文件将排除 dev 并适用于所有其他人。
在 XML 中使用配置文件属性
<beans profile="dev">
<bean id="DatasourceConfigForDev" class="org.skoolguy.profiles.DatasourceConfigForDev"/>
</beans>
设置配置文件的值:
通过 WebApplicationInitializer 接口以编程方式在 Web 应用程序中,WebApplicationInitializer 可用于以编程方式配置 ServletContext
@Configuration
public class MyWebApplicationInitializer implements WebApplicationInitializer {
@Override
public void onStartup(ServletContext servletContext) throws ServletException {
servletContext.setInitParameter("spring.profiles.active", "dev");
}
}
通过 ConfigurableEnvironment 以编程方式您还可以直接在环境中设置配置文件:
@Autowired
private ConfigurableEnvironment env;
// ...
env.setActiveProfiles("dev");
web.xml 配置文件中的上下文参数也可以在 Web 应用程序的 web.xml 中激活,使用上下文参数:
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/app-config.xml</param-value>
</context-param>
<context-param>
<param-name>spring.profiles.active</param-name>
<param-value>dev</param-value>
</context-param>
JVM 系统参数 作为参数传递的配置文件名称将在应用程序启动期间激活: -Dspring.profiles.active=dev 在 IDE 中,您可以设置应用程序运行时要使用的环境变量和值。以下是 Eclipse 中的运行配置:
https://i.stack.imgur.com/xaMKV.png
通过命令行设置的环境变量:export spring_profiles_active=dev
任何未指定配置文件的 bean 都属于“默认”配置文件。
优先顺序是:
web.xml 中的上下文参数 WebApplicationInitializer JVM 系统参数 环境变量
如果您使用 docker 部署 spring boot 应用程序,则可以使用标志 e 设置配置文件:
docker run -e "SPRING_PROFILES_ACTIVE=prod" -p 8080:8080 -t r.test.co/myapp:latest
-e
用于在 docker 容器内传递 env 变量。由于 Spring 读取 SPRING_PROFILES_ACTIVE
env var 以获取活动配置文件,因此 docker 的 -e 标志有效。
您可以通过提供 -Dspring.profiles.active=<env>
来设置弹簧配置文件
对于 source(src) 目录 中的 java 文件,您可以通过 System.getProperty("spring.profiles.active")
对于 test 目录中的 java 文件,您可以提供
SPRING_PROFILES_ACTIVE 到
或者
因为,“test”任务会忽略“environment”、“jvmArgs”和“systemProperties”。在 root build.gradle
添加一个任务来设置 jvm 属性和环境变量。
test {
def profile = System.properties["spring.profiles.active"]
systemProperty "spring.profiles.active",profile
environment "SPRING.PROFILES_ACTIVE", profile
println "Running ${project} tests with profile: ${profile}"
}
我的解决方案是将环境变量设置为 spring.profiles.active=development
。这样在该机器上运行的所有应用程序都将引用该变量并启动应用程序。 spring 加载属性的顺序如下
application.properties
system properties
environment variable
如果我从我的 web 应用程序目录运行命令行:java -Dspring.profiles.active=development -jar yourApplication.jar
,则表明路径不正确。所以我只是在 application.properties 文件中手动定义了配置文件,如下所示:
spring.profiles.active=mysql
或者
spring.profiles.active=postgres
或者
spring.profiles.active=mongodb
参加聚会为时已晚,但以下是该主题的新趋势:https://howtodoinjava.com/spring-boot2/logging/profile-specific-logging/
这是一个很好的例子:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<include resource="org/springframework/boot/logging/logback/defaults.xml" />
<property name="LOG_FILE" value="c:/temp/spring.log}"/>
<include resource="org/springframework/boot/logging/logback/console-appender.xml" />
<appender name="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
<encoder>
<pattern>${FILE_LOG_PATTERN}</pattern>
</encoder>
<file>${LOG_FILE}</file>
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
<fileNamePattern>${LOG_FILE}.%d</fileNamePattern>
</rollingPolicy>
</appender>
<springProfile name="local | dev">
<logger name="org.springframework" level="DEBUG" additivity="false">
<appender-ref ref="CONSOLE" />
</logger>
<root level="DEBUG">
<appender-ref ref="CONSOLE" />
<appender-ref ref="FILE" />
</root>
</springProfile>
<springProfile name="prod">
<root level="INFO">
<appender-ref ref="FILE" />
</root>
</springProfile>
<springProfile name="!local & !dev & !prod">
<root level="INFO">
<appender-ref ref="FILE" />
</root>
</springProfile>
</configuration>
!注意!如果您在使用 &
时遇到问题,请将其替换为 &
不定期副业成功案例分享