java - Spring Boot YML 和 StandAlone Tomcat 8 服务器

标签 java spring spring-mvc tomcat spring-boot

我有以下目录结构/配置文件:

src/main/resource/config: 
application.yml 
application-dev.yml 
application-sit.yml

注意根据“Bootiful Configurationhttps://spring.io/blog/2015/01/13/configuring-it-all-out-or-12-factor-app-style-configuration-with-spring :

Spring Boot will read the properties in src/main/resources/application.properties by default. If a profile is active, it will also automatically reads in the configuration files based on the profile name, like src/main/resources/application-foo.properties where foo is the current profile. If the Snake YML library is on the classpath, then it will also automatically load YML files.

如果我将 --spring.profiles.active=dev 设置为 snake YML jar 在类路径中 在 eclipse 运行配置中编程 arg 并将其用作我的主要方法一切都按预期工作:

  public static void main(String[] args) {
        SpringApplication app = new SpringApplication(Application.class);

        SimpleCommandLinePropertySource source = new SimpleCommandLinePropertySource(args);

        // Check if the selected profile has been set as argument.
        // if not the development profile will be added
        addDefaultProfile(app, source);

        app.run(args);
    }

    /**
     * Set a default profile if it has not been set
     */
    private static void addDefaultProfile(SpringApplication app, SimpleCommandLinePropertySource source) {
        if (!source.containsProperty("spring.profiles.active")) {
            app.setAdditionalProfiles(Constants.SPRING_PROFILE_DEVELOPMENT);
        }
    }

(请注意上面的主要方法引用来 self 的代码中使用的以下类:https://github.com/jarias/generator-jhipster-ember/blob/master/app/templates/src/main/java/package/_Application.java)

对于 spring.profile.active=dev,一切都按预期工作。这意味着两者: application.yml(默认加载)和application-dev.yml( Activity 配置文件)属性文件被加载并排除 application- sit.yml 因为 sit 不是一个活跃的个人资料。

这个嵌入式容器非常适合开发测试。但是,我想通过生成 war 并将其部署到独立的 Tomcat8 服务器来将其发布到生产环境中。

为此,我创建了 WebApplicationInitializer 的实现,Tomcat8 服务器需要它来自动检测、引导和启动独立服务器上的 spring 应用程序。

@Configuration
public class WebAppInit implements WebApplicationInitializer {


    @Override
    public void onStartup(ServletContext servletContext) throws ServletException {
        ApplicationContext context = new AnnotationConfigApplicationContext(Application.class);
        }
}

部署 war 后我收到以下错误我尝试启动独立服务器并收到以下错误:

Caused by: org.springframework.beans.factory.enter code hereBeanCreationException: Could not autowire field: private java.lang.String com.titlefeed.config.db.DbConfigJPA.databaseUrl; nested exception is java.lang.IllegalArgumentException: Could not resolve placeholder spring.data.postgres.uri' in string value "${spring.data.postgres.uri}"

这意味着 Tomcat Server/Spring isnt 加载 application-dev.yml 因为它包含以下属性:spring.data.postgres.uri

所以我尝试了以下两种解决方案

  1. 添加-Dspring.profiles.active=dev到tomcat/bin/catalina.sh中的JAVA_OPTS
  2. 添加 spring.profiles.active=dev 到 tomcat/conf/catalina.properties

而且他们都没有工作。如何让独立的 tomcat 服务器加载与 spring.profiles.active 属性关联的 yml 文件。

它适用于从 eclipse 启动的嵌入式 springboot 服务器,但不适用于独立服务器?

EDIT1:M. Deinum - 实现了您在下面建议的解决方案,但仍然出现以下错误:

Caused by: java.lang.IllegalArgumentException: Could not resolve placeholder 'spring.data.postgres.uri' in string value "${spring.data.postgres.uri}

似乎没有设置 -Dspring.profiles.active=dev。

@Configuration
public class WebAppInit extends SpringBootServletInitializer {

 @Override

    protected WebApplicationContext createRootApplicationContext(
            ServletContext servletContext) {
           log.info("Properly INITALIZE spring CONTEXT");
           ApplicationContext context = new AnnotationConfigApplicationContext(Application.class);
           servletContext.setAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE, context);
           return super.createRootApplicationContext(servletContext);
    }

}

编辑 2 ACV: - 在启动脚本中添加“--spring.profiles.active=dev”作为 JAVA_OPTS 变量的一部分:tomcat/bin/catalina.sh 不是一个可行的选项

例如:

 JAVA_OPTS="$JAVA_OPTS --spring.profiles.active=dev ...etc

出现以下错误:

Unrecognized option: --spring.profiles.active=dev Error: Could not create the Java Virtual Machine."

编辑 3: 修改了 application.yml 以包含以下属性

spring:
  profiles:
    active: dev

重新部署 war 。转到展开的 tomcat 目录位置以确保属性存在 webapps/feedserver/WEB-INF/classes/config/application.yml

问题依旧。

编辑 4: 在 tomcat exploded webdir 下添加了 application.properties:webapps/feedserver/WEB-INF/classes/application.properties:

spring.profiles.active=dev
spring.data.postgres.uri=jdbc:postgresql://localhost:5432/feedserver

重启tomcat,问题依旧。

它似乎没有获取 application.propertiesapplication.yml

编辑 5 使用推荐的方式为外部容器启动 spring boot 服务器:

@Configuration
public class WebAppInit extends SpringBootServletInitializer {

 @Override
 protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
     return application.sources(Application.class);
 }

}

编辑 6:

我在启动命令参数中添加了-Dspring.profiles.active=dev:

/Library/Java/JavaVirtualMachines/jdk1.8.0_25.jdk/Contents/Home/bin/java -Djava.util.logging.config.file=/Users/shivamsinha/Desktop/Programming/tomcat/conf/logging.properties -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager -Dlog4j.rootLevel=ERROR -Dlog4j.rootAppender=console -DENV=dev -Dlog4j.configuration=/WEB-INF/classes/properties/log4j.properties -DTOMCAT_DIR=WEB-INF/classes/ -Djava.endorsed.dirs=/Users/shivamsinha/Desktop/Programming/tomcat/endorsed -classpath /Users/shivamsinha/Desktop/Programming/tomcat/bin/bootstrap.jar:/Users/shivamsinha/Desktop/Programming/tomcat/bin/tomcat-juli.jar -Dcatalina.base=/Users/shivamsinha/Desktop/Programming/tomcat -Dcatalina.home=/Users/shivamsinha/Desktop/Programming/tomcat -Djava.io.tmpdir=/Users/shivamsinha/Desktop/Programming/tomcat/temp org.apache.catalina.startup.Bootstrap -Dspring.profiles.active=dev start

但是我仍然在日志中得到以下异常:

Caused by: org.springframework.beans.factory.BeanCreationException: Could not autowire field: private java.lang.String com.titlefeed.config.db.DbConfigJPA.databaseUrl; nested exception is java.lang.IllegalArgumentException: Could not resolve placeholder 'spring.data.postgres.uri' in string value "${spring.data.postgres.uri}"
    at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:561)
    at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:88)
    at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessPropertyValues(AutowiredAnnotationBeanPostProcessor.java:331)
    ... 68 more
Caused by: java.lang.IllegalArgumentException: Could not resolve placeholder 'spring.data.postgres.uri' in string value "${spring.data.postgres.uri}"
    at org.springframework.util.PropertyPlaceholderHelper.parseStringValue(PropertyPlaceholderHelper.java:174)
    at org.springframework.util.PropertyPlaceholderHelper.replacePlaceholders(PropertyPlaceholderHelper.java:126)
    at org.springframework.core.env.AbstractPropertyResolver.doResolvePlaceholders(AbstractPropertyResolver.java:204)
    at org.springframework.core.env.AbstractPropertyResolver.resolveRequiredPlaceholders(AbstractPropertyResolver.java:178)
    at org.springframework.context.support.PropertySourcesPlaceholderConfigurer$2.resolveStringValue(PropertySourcesPlaceholderConfigurer.java:175)
    at org.springframework.beans.factory.support.AbstractBeanFactory.resolveEmbeddedValue(AbstractBeanFactory.java:801)
    at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:955)
    at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:942)
    at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:533)
    ... 70 more

02-Sep-2015 03:15:40.472 SEVERE [localhost-startStop-1] org.apache.catalina.startup.HostConfig.deployWAR Error deploying web application archive /Users/shivamsinha/Desktop/Programming/tomcat/webapps/feedserver-1.0.0.war
 java.lang.IllegalStateException: ContainerBase.addChild: start: org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Catalina].StandardHost[localhost].StandardContext[/feedserver-1.0.0]]
    at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:728)
    at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:701)
    at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:714)
    at org.apache.catalina.startup.HostConfig.deployWAR(HostConfig.java:917)
    at org.apache.catalina.startup.HostConfig$DeployWar.run(HostConfig.java:1701)
    at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
    at java.util.concurrent.FutureTask.run(FutureTask.java:266)
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
    at java.lang.Thread.run(Thread.java:745)

最佳答案

来源:@M。 Deinum

将 spring profile args 传递到 Tomcat 8 有两种选择。

1.设置为环境变量

Tomcat 允许您在启动过程中调用的 CATALINA_HOME/setenv.shCATALINA_BASE/setenv.sh 中设置环境配置。

setenv.sh:
export SPRING_PROFILES_ACTIVE=dev

您可能还想创建一个包含以下行的 src/main/resources/banner.txt:

active profiles     :: ${spring.profiles.active}

它不会在您的 IDE 中工作(它从您的 jar/war 的 MANIFEST.MF 文件中读取,如果您正常编译则不会有),但在您关心的环境中它真的很方便 --除了您的本地环境之外的一切!

2.将其添加到执行类之前的启动脚本/命令中

我修改了 CATALINA_HOME/catalina.sh 添加了一个声明的变量:

SPRING_PROFILE="dev"

并且在所有相关执行中将其添加到脚本中:

  eval "\"$_RUNJAVA\"" "\"$LOGGING_CONFIG\"" $LOGGING_MANAGER $JAVA_OPTS $CATALINA_OPTS \
      -Djava.endorsed.dirs="\"$JAVA_ENDORSED_DIRS\"" -classpath "\"$CLASSPATH\"" \
      -Dcatalina.base="\"$CATALINA_BASE\"" \
      -Dcatalina.home="\"$CATALINA_HOME\"" \
      -Djava.io.tmpdir="\"$CATALINA_TMPDIR\"" \
      -Dspring.profiles.active="\"$SPRING_PROFILE\"" \
      org.apache.catalina.startup.Bootstrap "$@" start \
      >> "$CATALINA_OUT" 2>&1 "&"

显然这不是推荐的方法。但它有效!如果您确实有执行此操作的完全可复制的步骤,建议的方法可以随时发布答案,如果有效,我会接受。

关于java - Spring Boot YML 和 StandAlone Tomcat 8 服务器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32327522/

相关文章:

java - Spring Boot 1.5.x 未写入logging.file处的文件

spring-boot 没有创建 hsqldb 数据库

java - 是否保证线程将按照它们在 Java 中被 wait() 暂停/阻塞的顺序恢复?

java - 在 Spring、Hibernate 中访问用户数据

java - 实现 Spring Data 存储库的自定义方法并通过 REST 公开它们

spring - SAXParseException,无法读取架构文档

java - 接受 GET 时未接受 POST 请求

java - 类的所有方法都抛出相同的异常

java - 当我尝试更新 h :dataTable, 中的单元格时,它不会执行此操作

java - 使用 Java (Unix) 中的 Process Builder 在一行中执行 shell 脚本多个命令