springboot快速实用
Posted 【唐】三三
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot快速实用相关的知识,希望对你有一定的参考价值。
1.编写SpringConfig 用于实例化Spring容器
@Configuration //通过该注解来表明该类是一个Spring的配置,相当于一个
xml
文件
@Bean // 通过该注解来表明是一个Bean对象,相当于xml中的<bean>
@Configuration //通过该注解来表明该类是一个Spring的配置,相当于一个xml文件
@ComponentScan(basePackages = "cn.itcast.springboot.javaconfig") //配置扫描包
public class SpringConfig {
@Bean // 通过该注解来表明是一个Bean对象,相当于xml中的<bean>
public UserDAO getUserDAO(){
return new UserDAO(); // 直接new对象做演示
}
}
以上是关于springboot快速实用的主要内容,如果未能解决你的问题,请参考以下文章