使用SpringBoot卸载Application.properties文件

时间:2015-03-20 09:11:53

标签: spring maven properties spring-boot

我实际上使用spring作为后端服务器。我还使用SpringBoot来配置所有这些。

我现在还需要将此服务器连接到本地数据库。所以我使用了application.properties的文件。此文件位于src/main/resources

#Datasource
spring.datasource.url: jdbc:postgresql://localhost:5432/base_temp
spring.datasource.username: postgres
spring.datasource.password: password
spring.datasource.driverClassName: org.postgresql.Driver

#Jpa
jpa.database: POSTGRESQL
jpa.show-sql: true  
jpa.hibernate.ddl-auto: create
jpa.hibernate.dialect: PostgreSQLDialect
jpa.hibernate.namingStrategy: org.hibernate.cfg.ImprovedNamingStrategy

无论我放什么,在spring.datasource.password中,我在控制台中没有任何错误,所以我猜文件没有加载。

要解决此问题,我尝试将其包含在我的pom.xml

    <resources>
        <resource>
            <directory>src/main/resources</directory>
            <includes>
                <include>application.properties</include>
            </includes>
            <filtering>true</filtering>
        </resource>
    </resources>

我也尝试@PropertySource或自己创建数据源的@Bean:

@Bean
public DataSource dataSource() {
    DriverManagerDataSource dataSource = new DriverManagerDataSource();

    dataSource.setDriverClassName("org.postgresql.Driver");
    dataSource.setUrl("jdbc:postgresql://localhost:5432/base_temp");
    dataSource.setUsername("postgres");
    dataSource.setPassword("password");
    return dataSource;
}

但是在每种情况下,这个后端都可以从数据库中获取数据。我真的不知道如何使用SpringBoot并且知道,我不能无法看到我的配置是什么。

我也是如何推出这个:

   /**
     * This is the Spring-Boot application launcher
     *
     */
    @Configuration
    @EnableAutoConfiguration
    @EnableJpaRepositories
    @ComponentScan(basePackages = { "XXX.be" })
    @EntityScan(basePackages = { "XXX.be.model" })
    public class Launcher extends SpringBootServletInitializer {


    public static void main(String[] args) throws Exception {
        SpringApplication.run(Launcher.class, args);
    }

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

    @Bean
    public ServletRegistrationBean jerseyServlet() {
        ServletRegistrationBean registration = new ServletRegistrationBean(
                new ServletContainer(), "/pige/*");
        registration.addInitParameter(
                ServletProperties.JAXRS_APPLICATION_CLASS,
                ApplicationConfiguration.class.getName());
        return registration;
    }


    @Bean
    public EmbeddedServletContainerFactory containerFactory() {
        final JettyEmbeddedServletContainerFactory jettyEmbeddedServletContainerFactory = new JettyEmbeddedServletContainerFactory() {
            @Override
            protected JettyEmbeddedServletContainer getJettyEmbeddedServletContainer(
                    Server server) {
                return new JettyEmbeddedServletContainer(server);
            }
        };
        jettyEmbeddedServletContainerFactory
                .addServerCustomizers(new JettyConfigurer());
        return jettyEmbeddedServletContainerFactory;
    }

    @Bean
    public DozerBeanMapper dozerBean() {
        DozerBeanMapper dozerBean = new DozerBeanMapper();
        return dozerBean;
    }
}

1 个答案:

答案 0 :(得分:0)

最后,pom.xml中的两个工件之间存在简单的兼容性错误