Spring 使用JavaConfig实现配置的方法步骤
程序员文章站
2023-11-13 16:04:22
不使用spring的xml配置,全权交给java来做!
javaconfig是spring的一个子项目,在spring4之后,它称为了spring的核心功能!
实体类:...
不使用spring的xml配置,全权交给java来做!
javaconfig是spring的一个子项目,在spring4之后,它称为了spring的核心功能!
实体类:
package com.lrx.poji; import org.springframework.beans.factory.annotation.value; import org.springframework.stereotype.component; //说明这个类被spring注册到了容器中 @component public class user { @value("lixin") private string name; public string getname() { return name; } public void setname(string name) { this.name = name; } @override public string tostring() { return "user{" + "name='" + name + '\'' + '}'; } }
配置文件:
package com.lrx.config; import com.lrx.poji.user; import org.springframework.context.annotation.bean; import org.springframework.context.annotation.componentscan; import org.springframework.context.annotation.configuration; //这个也会被spring容器托管,因为它本来就是一个@component // @configuration代表一个类,就和我们之前的applicationcontext.xml是一样的 @configuration @componentscan("com.lrx.poji") public class liconfig { //注册一个bean,就相当于xml写的一个bean标签 //这个方法的名字就相当于bean标签中的id属性 //方法的返回值相当于bean标签中的class属性 @bean public user getuser(){ return new user(); //就是要注入到bean的对象 } }
测试类:
import com.lrx.config.liconfig; import com.lrx.poji.user; import org.springframework.context.applicationcontext; import org.springframework.context.annotation.annotationconfigapplicationcontext; public class mytest { public static void main(string[] args) { //如果完全使用了配置类方式去做,我们就只能通过annotationconfig上下文来获取容器 // 然后通过配置类的class对象来加载! applicationcontext context=new annotationconfigapplicationcontext(liconfig.class); user getuser= (user) context.getbean("user"); system.out.println(getuser.getname()); } }
这种纯java的配置方式在spring boot中随处可见!
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
下一篇: 皮皮精灵是什么工具?怎么用?
推荐阅读
-
Spring 使用JavaConfig实现配置的方法步骤
-
Spring Boot实现STOMP协议的WebSocket的方法步骤
-
php 使用mpdf实现指定字段配置字体样式的方法
-
Spring Boot使用yml格式进行配置的方法
-
使用python PIL库实现简单验证码的去噪方法步骤
-
普通对象使用spring容器中的对象的实现方法
-
netbeans下 spring mvc 使用JRebel的配置方法
-
使用Docker Compose 实现nginx负载均衡的方法步骤
-
接之前的文章,VS2017中使用Spring.NET配置以及使用方法(framework4.6.1超详细)
-
实现Nginx中使用PHP-FPM时记录PHP错误日志的配置方法