一.利用MyEclipse快速建立项目,并且导入Spring框架。
右键项目 -> myeclipse -> project facets -> install spring 。
二.创建model层,dao层,service层。
三 .配置applicationContext.xml
四.创建JUnit测试类。
UserServiceTest.java
package com.kami.service;import org.junit.Test;import org.springframework.context.ApplicationContext;import org.springframework.context.support.ClassPathXmlApplicationContext;import com.kami.model.User;public class UserServiceTest { @Test public void testAdd() throws Exception { ApplicationContext ctx = new ClassPathXmlApplicationContext("applicationContext.xml"); UserService service = (UserService)ctx.getBean("userService"); User u = new User(); u.setUsername("zhangsan"); u.setPassword("zhangsan"); service.add(u); }}
五.进行测试。
run as -> junit test .