No qualifying bean of type 'xxx.xxx.xxx' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)} 在启动项上加上 @EnableJpaRepositories(basePa…
Application 启动类: @SpringBootApplication @EnableConfigurationProperties @ComponentScan(basePackages = { "com.testing"}) public class Application { @Bean RestTemplate restTemplate() { return new RestTemplate();} public static void main(String[] ar…
前言:Spring Boot配置文件值的注入有两种方式,分别是 @ConfigurationProperties @Value 这里我们使用第一种 首先我们创建一个application.yml文件,里面写入这样一组数据 person: lastName: hello age: 18 boss: false birth: 2017/12/12 maps: {k1: v1,k2: 12} lists: - lisi - zhaoliu dog: name: 小狗 age: 12 之后我们创建一个J…
在阅读Spring Boot源码时,看到Spring Boot中大量使用ImportBeanDefinitionRegistrar来实现Bean的动态注入.它是Spring中一个强大的扩展接口.本篇文章来讲讲它相关使用. Spring Boot中的使用 在Spring Boot 内置容器的相关自动配置中有一个ServletWebServerFactoryAutoConfiguration类.该类的部分代码如下: @Configuration(proxyBeanMethods = false) @…
一.@ConfigurationProperties注解的使用 看配置文件,我的是yaml格式的配置: // file application.yml my: servers: - dev.bar.com - foo.bar.com - jiaobuchong.com 1 2 3 4 5 6 下面我要将上面的配置属性注入到一个Java Bean类中,看码: import org.springframework.boot.context.properties.ConfigurationProper…
https://blog.csdn.net/wangmx1993328/article/details/81002901 Error starting ApplicationContext. To display the auto-configuration report re-run your application with 'debug' enabled. 2019-01-29 00:14:04.856 ERROR 10988 --- [ main] o.s.boot.SpringAppl…
使用Spring Boot进行单元测试时,发现使用@Autowired注解的类无法自动注入,当使用这个类的实例的时候,报出NullPointerException,即空指针异常. Spring Boot中的单元测试 先简单说一下Spring Boot中的单元测试. 要在Spring Boot中使用单元测试是很简单的,Spring Boot提供了spring-boot-starter-test的依赖,即JUnit的相关依赖. 在pom.xml文件中引入依赖: <dependency> <g…
前一篇博客实现了打开第一个页面 链接:https://blog.csdn.net/qq_38175040/article/details/105709758 本篇博客实现在框架中注入properties文件中的值 首先在resource下创建一个book.properties文件,如下: 然后创建一个bookbean.java文件,如下,我把代码贴一下: package com.example.demo; import org.springframework.boot.context.prope…
有时候报的错误让你匪夷所思,找错误得学会找根.源头在哪里? 比如:我们刚开始看的错误就是 org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'userInfoServiceImpl': Unsatisfied dependency expressed through field 'userInfoRepository'; nested exception…
直接注入(Autowired) @Configuration public class OAConfig { @Autowired private ApplicationContext applicationContext; @Bean public PersonUtils personUtil(){ boolean bool=applicationContext.containsBean("aa"); System.out.println("containsBean:aa:…