具有多环境配置的maven应用程序无法在tomcat上部署

时间:2016-08-23 03:33:15

标签: hibernate tomcat spring-boot war maven-profiles

我正在尝试使用Spring Boot with Maven为我的Web应用程序配置多部署环境。在src / main / resources / config下创建了几个.properties文件。 db-dev.properties和db-prod.properties由数据库特定信息组成:

db.url=jdbc:oracle:thin:@ldap://dev.com/risstg3, 
db.username=owner
db.password=godzilla

在同一目录中,我也有application.properties,它读入这些db属性文件中定义的变量

#database info
spring.datasource.driverClassName=oracle.jdbc.OracleDriver
spring.datasource.url=${db.url}
spring.datasource.username=${db.username}
spring.datasource.password=${db.password}

#hibernate config
spring.jpa.database-platform=org.hibernate.dialect.Oracle10gDialect

我的pom中设置了多个配置文件:

 <profiles>
    <profile>
        <id>dev</id>
        <properties>
            <env>dev</env>
        </properties>
    </profile>
    <profile>
        <id>prod</id>
        <properties>
            <env>prod</env>
        </properties>
    </profile>
  </profiles>
  <build>
    <filters>
        <filter>src/main/resources/config/db-${env}.properties</filter>
    </filters>
    <resources>
      <resource>
        <directory>src/main/resources/config</directory>
        <filtering>true</filtering>
      </resource>
    </resources>

所有其他配置由Spring Boot在我的应用程序类中使用@SpringBootApplication注释处理。

然后我通过使用-P选项指定配置文件来构建战争,例如, mvn install -Pprod。但是由于以下错误,我无法在本地计算机上使用tomcat进行部署:

SEVERE: ContainerBase.addChild: start: org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Catalina].StandardHost[localhost].StandardContext[/ristoreService]]
Caused by: org.hibernate.HibernateException: Access to DialectResolutionInfo cannot be null when 'hibernate.dialect' not set

我以为我在application.properties中使用spring.jpa.database-platform=org.hibernate.dialect.Oracle10gDialect

设置了'hibernate.dialect'

基于此thread,此错误可能不一定与hibernate方言有关。如果数据库连接不成功,您可能会看到它。我错过了什么?有没有办法判断战争是用正确的配置文件创建的,以及db- {dev} .properties中定义的变量是否被选中?

1 个答案:

答案 0 :(得分:1)

这对您的设置略有不同,但我认为这将有助于以更友好的Spring方式解决问题。 Spring具有配置文件的概念。您可以创建application.properties个文件作为默认设置,然后使用application-${profile}.properties作为个人资料特定设置。如果您创建application-dev.propertiesapplication-prod.properties,则需要指定一个名为spring.profiles.active=dev的环境变量,并使用这些变量。这样,您就不需要为每种类型的部署创建单独的jar文件。

http://docs.spring.io/spring-boot/docs/current/reference/html/howto-properties-and-configuration.html#howto-change-configuration-depending-on-the-environment