博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Spring 环境搭建
阅读量:5825 次
发布时间:2019-06-18

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

1、导包

2、编写Helloworld程序

1 package cn.test.helloWorld;2 3 public class HelloWorld {4     public void sayHello(){5         System.err.println("1234567890");6     }7 }

3、在src目录下写配置文件applicationContext.xml

 

 这里也可以使用别名来配置,在bean下面添加:<alias name="helloWorld" alias="bm"/>,在后面的调用中就可以使用别名来调用了。

 4、编写启动客户端

1 @Test 2     public void doSomething(){ 3         /* 4          * 1、启动spring容器 5          * 2、从spring容器中把helloWorld拿出来 6          * 3、对象.方法 7          */ 8         ApplicationContext applicationContext=new ClassPathXmlApplicationContext("/applicationContext.xml"); 9         HelloWorld helloWorld=(HelloWorld) applicationContext.getBean("helloWorld");10         helloWorld.sayHello();11     }

 使用别名调用:效果相同

ApplicationContext applicationContext=new ClassPathXmlApplicationContext("/applicationContext.xml");

HelloWorld helloWorld=(HelloWorld) applicationContext.getBean("bm");
helloWorld.sayHello();

转载于:https://www.cnblogs.com/liuwt365/p/4224159.html

你可能感兴趣的文章
使用membership(System.Web.Security)来进行角色与权限管理
查看>>
opticom 语音质量验证白皮书
查看>>
3D实时渲染中的BSP树和多边形剔除
查看>>
Frank Klemm's Dither and Noise Shaping Page: Dither and Noise Shaping In MPC/MP+
查看>>
网络抓包的部署和工具Wireshark【图书节选】
查看>>
Redis在Windows+linux平台下的安装配置
查看>>
Maven入门实战笔记-11节[6]
查看>>
Local declaration of 'content' hides instance variable
查看>>
ASP.NET中 HTML标签总结及使用
查看>>
Linux下日志系统的设计
查看>>
爬虫IP被禁的简单解决方法——切换UserAgent
查看>>
php生成word,并下载
查看>>
紫书 习题8-11 UVa 1615 (区间选点问题)
查看>>
asp.net mvc学习(Vs技巧与Httpcontext)
查看>>
float数据在内存中是怎么存储的
查看>>
dedecms 修改标题长度可以修改数据库
查看>>
Matplotlib学习---用matplotlib画直方图/密度图(histogram, density plot)
查看>>
MySQL案列之主从复制出错问题以及pt-slave-restart工具的使用
查看>>
linux 查看剩余内存数
查看>>
测试人员容易遗漏的隐藏缺陷
查看>>