博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
spring注解开发AnnotationConfigApplicationContext的使用
阅读量:6820 次
发布时间:2019-06-26

本文共 886 字,大约阅读时间需要 2 分钟。

转自:https://www.cnblogs.com/kaituorensheng/p/8024199.html 使用AnnotationConfigApplicationContext可以实现基于Java的配置类加载Spring的应用上下文.避免使用application.xml进行配置。在使用spring框架进行服务端开发时,个人感觉注解配置在便捷性,和操作上都优于是使用XML进行配置;

 

很简单的接口output

public interface outPut {    public void helloworld(); }

实现类

public class outPutImpl implements outPut { public void helloworld() { System.out.println("hellworld"); } }

 

注解的使用 实际上我觉得这个是充当一个容器的角色

@Configurationpublic class hello { @Bean(name = "helloworl") public outPut impl() { return new outPutImpl(); } }

 

这里的重点在于不是引用ClassPathXmlApplicationContext() 这个是对xml配置spring的使用

public class Client {    public static void main(String[] args) { ApplicationContext context = new AnnotationConfigApplicationContext(hello.class); outPut outPut = (com.spring.lzx.interfacer.outPut) context.getBean("helloworl"); outPut.helloworld(); } }

转载于:https://www.cnblogs.com/sharpest/p/7748438.html

你可能感兴趣的文章
上传文件和导出的测试用例设计
查看>>
程序员为何如此累
查看>>
ajax(异步页面动态刷新)
查看>>
关于JQuery的选择器
查看>>
Java和C++的区别
查看>>
git工作区和暂存区
查看>>
C函数调用与栈
查看>>
SQL优化小技巧
查看>>
UVALive 4850 Installations 贪心
查看>>
JS 中刷新页面的方法
查看>>
励志帝马云是不是你的财富导师?
查看>>
力扣算法题—088合并两个有序数组
查看>>
APP和web设计区别
查看>>
三层fragment嵌套,接口回调方式
查看>>
sfcapd服务新增nfdump安装
查看>>
Node.js:DNS模块的使用
查看>>
C指针函数中的局部变量返回
查看>>
获取总页数和分页的公用方法
查看>>
【cocos2d-js官方文档】四、基础数据类型
查看>>
【IIS错误】IIS各种错误
查看>>