gpt4 book ai didi

MyEclipse2017创建Spring项目的方法

转载 作者:qq735679552 更新时间:2022-09-27 22:32:09 28 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章MyEclipse2017创建Spring项目的方法由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

myeclipse2017创建spring项目,供大家参考,具体内容如下 。

1、创建一个web project 。

MyEclipse2017创建Spring项目的方法

2、右击项目-->properties 。

MyEclipse2017创建Spring项目的方法

3、搜索spring -->peoject facets-->在右边找到spring,打勾并保存 。

MyEclipse2017创建Spring项目的方法

MyEclipse2017创建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搭建成功 。

MyEclipse2017创建Spring项目的方法

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我.

原文链接:https://www.cnblogs.com/Dzsom/archive/2018/03/14/8565269.html 。

最后此篇关于MyEclipse2017创建Spring项目的方法的文章就讲到这里了,如果你想了解更多关于MyEclipse2017创建Spring项目的方法的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com