Spring Boot app:没有拿起application.properties?

时间:2015-10-08 17:58:41

标签: java spring maven spring-mvc solr

我有一个春季启动应用程序我到这里: https://github.com/christophstrobl/spring-data-solr-showcase/tree/4b3bbf945b182855003d5ba63a60990972a9de72

它编译并且可以正常运行:mvn spring-boot:run

但是,当我在Spring Tools Suite中单击“作为Spring Boot应用程序运行”时,我收到一条错误,指出无法找到在application.properties文件中设置的${solr.host}

org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'productServiceImpl': Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire method: public void org.springframework.data.solr.showcase.product.ProductServiceImpl.setProductRepository(org.springframework.data.solr.showcase.product.ProductRepository); nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'productRepository': Initialization of bean failed; nested exception is java.lang.IllegalArgumentException: Could not resolve placeholder 'solr.host' in string value "${solr.host}"

我的applications.properties文件如下所示:

# SPRING MVC
spring.view.suffix=.jsp
spring.view.prefix=/WEB-INF/views/

# SOLR
solr.host=http://192.168.56.11:8983/solr

相关类看起来像这样(唯一使用$ solr.host变量的地方)。此外,如果我直接解决SOLR服务器的IP(如在注释代码中),应用程序就可以正常启动。

* Copyright 2012 - 2014 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.springframework.data.solr.showcase.config;

import org.apache.solr.client.solrj.SolrServer;
import org.apache.solr.client.solrj.impl.HttpSolrServer;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.PropertySource;
import org.springframework.context.annotation.PropertySources;
import org.springframework.data.solr.core.SolrTemplate;
import org.springframework.data.solr.repository.config.EnableSolrRepositories;
import org.springframework.data.solr.server.SolrServerFactory;
import org.springframework.data.solr.server.support.MulticoreSolrServerFactory;

/**
 * @author Christoph Strobl
 */
@Configuration
@EnableSolrRepositories(basePackages = { "org.springframework.data.solr.showcase.product" })

public class SearchContext {

    @Bean
    public SolrServer solrServer(@Value("${solr.host}") String solrHost) {
        return new HttpSolrServer(solrHost);
    }

//  @Bean
//  public SolrServer solrServer(@Value("http://192.168.56.11:8983/solr") String solrHost) {
//      return new HttpSolrServer(solrHost);
//  }

    @Bean
    public SolrServerFactory solrServerFactory(SolrServer solrServer) {
        return new MulticoreSolrServerFactory(solrServer);
    }

    @Bean
    public SolrTemplate solrTemplate(SolrServerFactory solrServerFactory) {
        return new SolrTemplate(solrServerFactory);
    }

}

我要包含那个“ProductRepository” - 错误中提到的那个 - 虽然那里没有太多...

* Copyright 2012 - 2014 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.springframework.data.solr.showcase.product;

import java.util.Collection;

import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import org.springframework.data.solr.core.query.Query.Operator;
import org.springframework.data.solr.repository.Query;
import org.springframework.data.solr.repository.SolrCrudRepository;
import org.springframework.data.solr.showcase.product.model.Product;

/**
 * @author Christoph Strobl
 */
interface ProductRepository extends SolrCrudRepository<Product, String> {

    @Query(fields = { SearchableProductDefinition.ID_FIELD_NAME, SearchableProductDefinition.NAME_FIELD_NAME,
            SearchableProductDefinition.PRICE_FIELD_NAME, SearchableProductDefinition.FEATURES_FIELD_NAME,
            SearchableProductDefinition.AVAILABLE_FIELD_NAME }, defaultOperator = Operator.AND)
    Page<Product> findByNameIn(Collection<String> names, Pageable page);

}

我有一个似乎是“标准”的文件结构... src / main / java中的代码等等。 application.properties文件驻留在src / main / resources中。

感激地接受任何建议。

(快速添加:这是运行Tomcat作为嵌入式服务器)

17 个答案:

答案 0 :(得分:41)

这是模糊不清的 - 其他答案对于让我指向正确的方向非常有帮助。

在尝试了建议的解决方案之后,我深入探讨并在Project Properties中找到了这个 - &gt; Java构建路径 - &gt;来源(标签) - &gt;构建路径上的源文件夹:[排除部分]

**/application.properties

删除排除项修复了问题,并在启动期间从application.properties文件中选取了值。

值得注意的是,从命令行(在.project文件的目录中)运行此操作会绕过排除问题并且运行正常。

mvn spring-boot:run

答案 1 :(得分:7)

我使用 Spring Boot 2.0.0 ,我遇到了同样的问题。 使用版本 1.4.3 ,它完美无缺。

原因是指定义此参数:

-Dspring.config.location=file:/app/application-prod.yml

Spring Boot 现在不会添加默认位置进行搜索。

<强>解决方案

-Dspring.config.location=file:/app/application-prod.yml,classpath:application.yml

见:

  1. /org/springframework/boot/context/config/ConfigFileApplicationListener.java
  2. https://docs.spring.io/spring-boot/docs/2.0.1.BUILD-SNAPSHOT/reference/htmlsingle/#appendix

答案 2 :(得分:3)

在@Configuration类中声明PropertySourcesPlaceholderConfigurer。

from django.contrib import admin
from almacen.models import Inventario

class InventarioAdmin(admin.ModelAdmin):
    readonly_fields = ['producto', 'fecha', 'ubicacion']

admin.site.register(Inventario, InventarioAdmin)

带有正确注释的属性资源路径。

@Bean
public static PropertySourcesPlaceholderConfigurer propertyPlaceholderConfigurer() {

      return new PropertySourcesPlaceholderConfigurer();
}

答案 3 :(得分:3)

对我来说,这是由于包装为 pom

我的pom.xml中包含如下内容

<packaging>pom</packaging>

因此,如果您有类似的事情,

  1. 将其删除以用于春季启动应用。

  2. 删除目标文件夹或mvn clean。

  3. 然后安装mvn。
  4. 在target / classes / application.properties文件下监视您的属性。

答案 4 :(得分:1)

我有一些代码用于在Spring启动中导入属性:

@SpringBootApplication
@EnableIntegration
@EnableScheduling
@ImportResource({ "classpath*:applicationContext.xml" })
@PropertySources(value = {
@PropertySource(ignoreResourceNotFound = true, value =     "classpath:properties/application.properties"),
@PropertySource(ignoreResourceNotFound = true, value = "classpath:properties/dbNhibernateConfig.properties"),
@PropertySource(ignoreResourceNotFound = true, value = "classpath:properties/mailConfiguration.properties"),
@PropertySource(ignoreResourceNotFound = true, value = "classpath:properties/errorcodes.properties") })
@IntegrationComponentScan("com.*.report.main")
public class AgilereportsApplication{

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

创建Spring启动应用程序时,默认情况下会从资源文件夹中读取application.properties。您不需要导入属性文件。

假设您创建了另一个具有不同名称的属性文件,或者您已将application.properties文件移动到另一个文件夹。在我的情况下,我将属性文件移动到 resource \ property 文件夹,因此我添加了注释@PropertySource来读取这些属性文件。

答案 5 :(得分:1)

在pom.xml中包括以下内容。 这应该可以解决问题。

<build>
    <resources>     
        <resource>
            <directory>src/main/resources</directory>
            <includes>                      
                <include>**/*.properties</include>                  
            </includes>
        </resource>            
    </resources>
</build>

答案 6 :(得分:0)

在我的情况下,资源污染者未注册资源。我使用IntelliJ,因此转到模块设置部分,选择资源文件夹,然后单击窗口上部的资源。之后它开始获取application.properties文件

答案 7 :(得分:0)

就我而言,它是 logback-spring.xml。删除 logback 文件名中的 spring 后,它开始工作。

答案 8 :(得分:0)

尝试重命名应用程序属性文件并尝试。它应该检测并编译。它对我有用。

答案 9 :(得分:0)

花了几个小时后,它才起作用!

问题:Springboot 2.X.X忽略application.properties/application.yml,并始终在默认端口8080上启动tomcat。

根本原因:它在Spring Boot 2.x.x中很奇怪,仅在某些机器上可见。 Spring docs没有这样的概念。这是一个自定义问题。

解决方案:提供spring.config.location作为classpath:application.properties(通常,我们将这种做法用于外部配置文件,但对于此问题有效)。 让我知道它是否也对您有用。

答案 10 :(得分:0)

您始终可以像在pom.xml构建部分中那样指定您希望Spring在哪里寻找属性文件。

<resources>
    <resource>
        <directory>src/main/assembly</directory>
        <filtering>true</filtering>
    </resource>
    <resource>
        <directory>src/main/resources</directory>
        <filtering>true</filtering>
    </resource>
    <resource>
        <directory>src/main/config</directory>
        <filtering>true</filtering>
    </resource>

答案 11 :(得分:0)

就我而言,我有一个Encryption Utility类,并且正在从基本属性文件中加载公钥和私钥。

添加 @Component 注释对我有用。

@Component
public class AESEncryption {

private static String BASE64_ENCODED_PUBLIC_KEY;
private static String BASE64_ENCODED_PRIVATE_KEY;

    public AESEncryption(@Value("${BASE64_ENCODED_PUBLIC_KEY}") String BASE64_ENCODED_PUBLIC_KEY,
                         @Value("${BASE64_ENCODED_PRIVATE_KEY}") String BASE64_ENCODED_PRIVATE_KEY) {
        this.BASE64_ENCODED_PUBLIC_KEY = BASE64_ENCODED_PUBLIC_KEY;
        this.BASE64_ENCODED_PRIVATE_KEY = BASE64_ENCODED_PRIVATE_KEY;
    }
}

答案 12 :(得分:0)

我遇到了这个问题。如果我从IntelliJ中进行“重建”,它将把application.properties从我的src / test / reources文件夹复制到我的目标/测试类中,然后一切正常。但是,如果我是从Maven构建的,它将从target / test-classes文件夹中消失,然后在由maven运行时测试将失败,因为它找不到application.properties文件。低估了,经过反复的反复后,我意识到我的文件夹命名不正确(上面不是拼写错误)。我有“ src / test /资源/application.properties”,而不是“ src / test /资源/application.properties”。发现这一点真是太痛苦了。上面的答案帮助我进行了改进,并最终注意到了错字。没有人们想象的那么明显。提防。

答案 13 :(得分:0)

我通过在构建路径中添加资源文件夹来解决此问题。

之前

enter image description here

请执行以下操作:-

  1. 点击添加文件夹...
  2. 添加资源文件夹

enter image description here

答案 14 :(得分:0)

在创建src / test / resources文件夹时,选中“更新其他源文件夹中的排除过滤器以解决嵌套”复选框。并使用PropertySource加载src

@PropertySource(value = {"classpath:application-junit.properties"}, 
ignoreResourceNotFound = true)

答案 15 :(得分:0)

我也面临同样的问题,即它没有在类路径中加载application.properties文件。在我的情况下,问题是,如果在资源文件夹中有超过1个资源,即属性文件或xml文件,则需要将资源文件夹重命名为资源。 Spring会自动为您执行此操作,但如果没有发生,请手动执行。它解决了我的问题,可能对你有帮助。

答案 16 :(得分:0)

添加PropertySourcesPlaceholderConfigurer@PropertySource应该可以防止您将属性文件名保持为applications.properties。但是,AFAIK spring boot会自动获取application.properties文件。因此,您还可以将applications.properties文件重命名为application.properties,然后该文件就可以正常运行。