考虑定义一个类型为' com.ensat.services.ProductService'的bean。在您的配置中

时间:2016-11-06 15:46:02

标签: java spring spring-mvc spring-boot

我有

package com.example;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration;
import org.springframework.boot.autoconfigure.domain.EntityScan;
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.boot.web.support.SpringBootServletInitializer;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.data.jpa.repository.config.EnableJpaRepositories;
import org.springframework.transaction.annotation.EnableTransactionManagement;

@SpringBootApplication
@ComponentScan(basePackages = {"hello","com.ensat.controllers"})
@EntityScan("com.ensat.entities")
public class Application extends SpringBootServletInitializer {

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

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

}

ProductController.java

package com.ensat.controllers;

import com.ensat.entities.Product;
import com.ensat.services.ProductService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;

/**
 * Product controller.
 */
@Controller
public class ProductController {

    private ProductService productService;

    @Autowired
    public void setProductService(ProductService productService) {
        this.productService = productService;
    }

    /**
     * List all products.
     *
     * @param model
     * @return
     */
    @RequestMapping(value = "/products", method = RequestMethod.GET)
    public String list(Model model) {
        model.addAttribute("products", productService.listAllProducts());
        System.out.println("Returning rpoducts:");
        return "products";
    }

    /**
     * View a specific product by its id.
     *
     * @param id
     * @param model
     * @return
     */
    @RequestMapping("product/{id}")
    public String showProduct(@PathVariable Integer id, Model model) {
        model.addAttribute("product", productService.getProductById(id));
        return "productshow";
    }

    // Afficher le formulaire de modification du Product
    @RequestMapping("product/edit/{id}")
    public String edit(@PathVariable Integer id, Model model) {
        model.addAttribute("product", productService.getProductById(id));
        return "productform";
    }

    /**
     * New product.
     *
     * @param model
     * @return
     */
    @RequestMapping("product/new")
    public String newProduct(Model model) {
        model.addAttribute("product", new Product());
        return "productform";
    }

    /**
     * Save product to database.
     *
     * @param product
     * @return
     */
    @RequestMapping(value = "product", method = RequestMethod.POST)
    public String saveProduct(Product product) {
        productService.saveProduct(product);
        return "redirect:/product/" + product.getId();
    }

    /**
     * Delete product by its id.
     *
     * @param id
     * @return
     */
    @RequestMapping("product/delete/{id}")
    public String delete(@PathVariable Integer id) {
        productService.deleteProduct(id);
        return "redirect:/products";
    }

}

ProductService.java

package com.ensat.services;

import com.ensat.entities.Product;

public interface ProductService {

    Iterable<Product> listAllProducts();

    Product getProductById(Integer id);

    Product saveProduct(Product product);

    void deleteProduct(Integer id);

}

ProductServiceImpl.java

package com.ensat.services;

import com.ensat.entities.Product;
import com.ensat.repositories.ProductRepository;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

/**
 * Product service implement.
 */
@Service
public class ProductServiceImpl implements ProductService {

    private ProductRepository productRepository;

    @Autowired
    public void setProductRepository(ProductRepository productRepository) {
        this.productRepository = productRepository;
    }

    @Override
    public Iterable<Product> listAllProducts() {
        return productRepository.findAll();
    }

    @Override
    public Product getProductById(Integer id) {
        return productRepository.findOne(id);
    }

    @Override
    public Product saveProduct(Product product) {
        return productRepository.save(product);
    }

    @Override
    public void deleteProduct(Integer id) {
        productRepository.delete(id);
    }

}

这是我的错误:

***************************
APPLICATION FAILED TO START
***************************

Description:

Parameter 0 of method setProductService in com.ensat.controllers.ProductController required a bean of type 'com.ensat.services.ProductService' that could not be found.


Action:

Consider defining a bean of type 'com.ensat.services.ProductService' in your configuration.

我有完整的日志:https://gist.github.com/donhuvy/b918e20eeeb7cbe3c4be4167d066f7fd

这是我的完整源代码 https://github.com/donhuvy/accounting/commit/319bf6bc47997ff996308c890eba81a6fa7f1a93

如何修复错误?

2 个答案:

答案 0 :(得分:7)

bean不是由Spring创建的,因为componentScan属性错过了ProductServiceImpl所在的包。

此外,@EnableJpaRepositories缺失。因此,Spring无法连接您的存储库。

@SpringBootApplication
@ComponentScan(basePackages = {"hello","com.ensat.controllers"})
@EntityScan("com.ensat.entities")

应替换为:

@SpringBootApplication
@ComponentScan(basePackages = {"hello","com.ensat.controllers", "com.ensat.services";
})
@EntityScan("com.ensat.entities")
@EnableJpaRepositories("com.ensat.repositories")

它将解决您的问题,但这种做法违背了Spring和Spring Boot的配置优势的惯例。

如果Application bean类位于父包中,则所有其他类 bean类属于它或它的子包,你不再需要指定这两个注释:

@ComponentScan(basePackages = {"hello","com.ensat.controllers"})
@EntityScan("com.ensat.entities")
<{1>}班级中的

例如,在@SpringBootApplication包中移动Application并将所有bean移动到此包或其子包中都将解决配置问题并减轻配置。 / p>

com.ensat

为什么?

因为package com.ensat; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class Application extends SpringBootServletInitializer { ... } 已包含它们(及更多):

@SpringBootApplication

但是它使用当前类的包作为@Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME) @Documented @Inherited @SpringBootConfiguration @EnableAutoConfiguration @ComponentScan(excludeFilters = { @Filter(type = FilterType.CUSTOM, classes = TypeExcludeFilter.class), @Filter(type = FilterType.CUSTOM, classes = AutoConfigurationExcludeFilter.class) }) public @interface SpringBootApplication { 值来发现bean /实体/存储库等...

文件提到了这一点。

Here

  

许多Spring Boot开发人员总是对其主类进行注释   使用@Configuration,@ EnableAutoConfiguration和@ComponentScan。   由于这些注释经常被一起使用(特别是如果   你遵循上面的最佳实践),Spring Boot提供了一个   方便的@SpringBootApplication替代方案。

     

@SpringBootApplication注释等同于使用   @Configuration,@ EnableAutoConfiguration和@ComponentScan与他们的   默认属性

此处讨论basePackage 77.3 Use Spring Data repositories point提供的实体发现:

  

Spring Boot试图猜测你的@Repository的位置   定义,基于它找到的@EnableAutoConfiguration。得到   更多控件,使用@EnableJpaRepositories注释(来自Spring   数据JPA)。

答案 1 :(得分:0)

我遇到了这个错误,我花了一整个下午来弄明白。我已经检查了每个 stackoverflow 帖子, spring.io 文档,与此问题相关的github问题,并且没有一个答案可以解决错误。

总之,我尝试过:

  1. 重构和重命名我的包和类
  2. 定义配置的备用类
  3. 删除或重制错误的课程
  4. 尽可能详尽地注释我的课程
  5. 完全定义课程
  6. 为@Autowire我的存储库创建多个代码实现
  7. 绝望地在墙上敲我的头 - 好吧,我可能已经超越了这一点
  8.   

    鉴于我有两个存储库,其中没有一个被 @ComponentScan @EntityScan 注释识别。总而言之,我无法用它们实例化或执行任何操作。

    对我来说诀窍是什么,如果你已经筋疲力尽,我建议你做什么呢

    1. 仔细检查pom.xml中的项目依赖项。该错误可能与您的代码无关(因为它不在我的代码中)。
    2. 如果您的依赖项是正确的,那么使用修订后的 pom.xml 创建一个新的Maven项目
    3. 更新您的Maven依赖关系。值得一提的是,我是通过我的IDE,即Eclipse + Spring Tool Suite完成的(我不相信Spring Tool Suite在更新方面做了很大的改动) 4. 构建您的软件包,以便他们遵循最佳做法(有一篇关于此here的好文章。)
    4. 然后,小心地迁移您的文件。从bean开始,执行程序,检查错误;然后是存储库,执行,测试;任何启动脚本;然后控制器等。花点时间确保一切正常。
    5. 有时调试这些应用程序会非常痛苦。我有我的份额。我希望它有所帮助!