欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

MyEclipse2017创建Spring项目的方法

程序员文章站 2022-10-19 20:14:27
myeclipse2017创建spring项目,供大家参考,具体内容如下 1、创建一个web project 2、右击项目-->properties 3...

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

1、创建一个web project

MyEclipse2017创建Spring项目的方法

2、右击项目-->properties

MyEclipse2017创建Spring项目的方法

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

MyEclipse2017创建Spring项目的方法

MyEclipse2017创建Spring项目的方法

4、测试

4.1 创建个类

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  

<?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包)  

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项目的方法

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