myeclipse2017创建spring项目,供大家参考,具体内容如下
1、创建一个web project
2、右击项目-->properties
3、搜索spring -->peoject facets-->在右边找到spring,打勾并保存
4、测试
4.1 创建个类
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
package cn.spring.user; /** * * @author dzsom * @date 2018年3月13日下午11:42:03 * @encoding utf-8 * @version 1.0 **/ public class user { private string uname; private int age; public string getuname() { return uname; } public void setuname(string uname) { this .uname = uname; } public int getage() { return age; } public void setage( int age) { this .age = age; } } |
4.2 修改src下的配置文件applicationcontext.xml
1
2
3
4
5
6
7
8
9
10
|
<?xml version= "1.0" encoding= "utf-8" ?> <beans xmlns= "http://www.springframework.org/schema/beans" xmlns:xsi= "http://www.w3.org/2001/xmlschema-instance" xmlns:p= "http://www.springframework.org/schema/p" xsi:schemalocation= "http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.1.xsd" > <!-- 将对象交给spring管理 --> <bean name= "user" class = "cn.spring.user.user" ></bean> </beans> |
4.3 创建测试类(@test需要导入junit包)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
package cn.spring.test; import org.junit.test; import org.springframework.context.applicationcontext; import org.springframework.context.support.classpathxmlapplicationcontext; import cn.spring.user.user; /** * * @author dzsom * @date 2018年3月14日上午9:35:19 * @encoding utf-8 * @version 1.0 **/ public class demo { @test public void fun() { //1.创建容器对象 applicationcontext ac= new classpathxmlapplicationcontext( "applicationcontext.xml" ); //2.向容器要对象 user user = (user) ac.getbean( "user" ); //3.打印 system.out.println(user); } } |
4.4 右击运行测试,若有值输出则spring搭建成功
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:https://www.cnblogs.com/Dzsom/archive/2018/03/14/8565269.html