博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Spring、Hello Spring
阅读量:6799 次
发布时间:2019-06-26

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

1、引入Spring jar包

2、新建一个Person 接口和Person Bean

public interface PersonIService {	public void helloSpring();}
import cn.server.PersonIService;public class PersonServiceImpl implements PersonIService {	@Override	public void helloSpring() {		System.out.println("Hello Spring!");	}}
3、将PersonBean在beans.xml中注入:

4、使用ClassPathXmlApplicationContext 解析beans.xml  并得到PersonBean对象

@Test	public void test() {		ApplicationContext ac = new ClassPathXmlApplicationContext("beans.xml");		PersonIService personIService=(PersonIService)ac.getBean("personIService");		personIService.helloSpring();	}

你可能感兴趣的文章
Voilin 与 乐谱
查看>>
一键U盘装系统
查看>>
最新版SDWebImage的使用
查看>>
C 二维数组与指针
查看>>
node c++ addon注意事项
查看>>
hdu 3501(欧拉函数引申)
查看>>
django-request获取数据
查看>>
python的eval、exec函数使用总结
查看>>
js解析与序列化json数据(一)
查看>>
Oracle升级前备份和失败回退
查看>>
java设计模式-工厂方法模式
查看>>
SAP RFC通信模式
查看>>
基于jQuery+JSON的省市联动效果
查看>>
NABCD构建APP
查看>>
[数据结构]二叉树创建与遍历
查看>>
MySQL 5.6.26几种安装包的区别
查看>>
前端005/React生命周期
查看>>
LeetCode OJ - Symmetric Tree && Same Tree
查看>>
通讯录设计
查看>>
课后作业
查看>>