SSH框架整合开发详解(个人笔记)

一.创建数据库并设置编码。

A) create database oa default character set utf8

二.MyEclipse工程

A) 在Myeclipse里创建web工程,并设置编码为utf8.

B) 添加框架环境

1.添加Junit4 libraryMyeclipse自带)

2.添加Struts2环境

①所需Jar

②配置文件:拷贝一个struts.xml模版到src目录,进行适当修改,web.xml里配上需要的代码。

struts.xml






	
    
    
    
    
    
	
   
    
      	
      		
      	
    
    
    

web.xml



	struts2
	org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter


	struts2
	/*



3.添加Hibernate环境 

①所需Jar

配置文件:拷贝一个hibernate.cfg.xml和映射文件*.hbm.xml模版到src目录,并进行适当修改。

hibernate.cfg.xml








	
	
		org.hibernate.dialect.MySQL5InnoDBDialect
	
	jdbc:mysql:///oa
	com.jdbc.mysql.Driver
	root
	root

	
	true
	update

	
	
	


User.hbm.xml






	
		
            
		
		
	
	

4.添加Spring环境

①所需Jar

配置文件:拷贝一个appicationContext.xml/beans.xml模版到src目录

appicationContext.xml(较完整版)




	
	

	




	
	
		
		
		
		
		
			
				
				
				
				
				
				
				
				
				
				
				
				
				
				
				
				
				
				
				
				
				
			
		
	


	
	
		
	
	
	
 



5.整合SpringStruts2 (IOC:让struts2action交由容器管理)


src目录下建Junit测试包进行测试

①单独测试struts2,新建TestAction

a) TestAction.java

public class TestAction extends ActionSupport{
	
	@Override
	public String execute() throws Exception{
		System.out.println("===>TestAction.execute()");
		return "success";
	}
}

b)在struts.xml里配置相应action



	/test.jsp

c)部署测试是否可以通过test.action正常访问test.jsp页面和是否输出"===>TestAction.execute()"


单独测试Spring,新建SpringTest此时appicationContext.xml里面只需要一个装配和扫描bean的语句,否则可能报错

a) SpringTest.java

public class SpringTest {
	private ApplicationContext ac=new ClassPathXmlApplicationContext("applicationContext.xml");
	
	@Test
	public void testBean() throws Exception{
		TestAction testAction=(TestAction) ac.getBean("testAction");
		System.out.println(testAction);
	}
}

b)此时Junit测试不能成功,必须在TestAction类上进行声明,并配置scope

@Controller
@Scope("prototype")
public class TestAction extends ActionSupport{
	
	@Override
	public String execute() throws Exception{
		System.out.println("==>TestAction.execute");
		return "success";
	}
}
c)此时再进行 Junit 测试成功输出 testAction.


d)声明一个bean(注解方式,有四种方式,根据不同类用相对应的方式)

效果跟在bean.xml里面写功能是一样的

@Component("beanName")//不写beanName默认使用类名首字母小写,即testAction

@Controller

@Service

@Repository

配置beanscope,默认为单例,修改为prototype

@Scope("prototype")


③测试Struts2Spring整合

a)在web.xml中配置一个监听器



	org.springframework.web.context.ContextLoaderListener


	contextConfigLocation
	classpath:applicationContext*.xml

b) 加一个jar包:struts2-spring-plugin-2.1.8.1.jar

struts.xml中的actionclass从路径改为bean名称,再进行测试,看是否整合成功




	/test.jsp

c)部署测试是否可以通过 test.action 正常访问test.jsp页面 正常访问 test.jsp 代表整合成功。


6.整合SpringHibernate1.管理SessionFactory实例(只需要一个)2.声明式事务管理)

SessionFactory

a)applicationContext.xml里配置sessionFactoryv(见上文appicationContext.xml),并在hibernate.cfg.xml去掉重复的连接数据库的信息

b)新建一个jdbc.properties用来存放dataSource用到的数据库连接信息,并在applicationContext.xml导入该文件

applicationContext.xml(上文appicationContext.xml已配置)


jdbc.properties

jdbcUrl		= jdbc:mysql:///oa?characterEncoding=utf8
driverClass	= com.mysql.jdbc.Driver
user		= root
password	= root

c)SpringTest类里写测试方法,进行Junit测试。

@Test
public void testSessionFactory() throws Exception{
	SessionFactory sessionFactory=(SessionFactory) ac.getBean("sessionFactory");
	System.out.println(sessionFactory);
}

声明式事务管理

a)applicationContext.xml里配置声明式事务管理(上文appicationContext.xml已配置)



	


b)测试声明式事务管理(测试回滚)

i.新建一个用于测试的实体类:User.java(只需定义idname及其构造方法即可)

ii.根据User写对应的User.hbm.xml映射文件

iii.hibernate.cfg.xml导入映射文件

iV.新建一个TestService类

@Service("testService")
public class TestService {
	
	@Resource
	private SessionFactory sessionFactory;
	
	@Transactional
	public void saveTwoUsers(){
		Session session=sessionFactory.getCurrentSession();
		session.save(new User());
		int a=1/0;//会抛异常,因为声明了事务,因此会回滚
		session.save(new User());
	}
}

V.在SpringTest类里写测试方法,进行Junit测试。

@Test
public void testTransaction() throws Exception{
	TestService testService=(TestService)ac.getBean("testService");
	testService.saveTwoUsers();
}

Vi如果数据库中有新创建的表,并且没有插入数据,则去掉异常int a=1/0;再进行正常插入,如果此时id 从2开始,则 测试成功,因为id为1的user在之前一次测试中,抛异常被回滚。至此,三大框架整合完毕。


7.对三大框架整合进行完整测试。

①修改TestAction.java为如下代码

@Controller
@Scope("prototype")
public class TestAction extends ActionSupport{
	
	@Resource
	private TestService testService;
	@Override
	public String execute() throws Exception{
		//System.out.println("test");
		testService.saveTwoUsers();
		return "success";
	}
}

②Spring管理对象(事务),action处理请求,hibernate处理对象的存储。

③如果此时通过test.action能正常显示test.jsp并且在数据库中的user表中增加了2条记录,则整合成功。(可以再加入异常进行反复测,如果还出现回滚现象,则代表成功)

 

 

你可能感兴趣的:(Java框架)