ssh集成步骤
1.数据库部分:建库,建表,加数据,测试数据
注意:建表一定要有主键
2.建项目:webSSH(web项目)
3.打开MyEclipse Database Explorer窗口
配置数据库有关的各种参数:驱动包,url,username,password
4.回到第二步,包资源管理窗口
5.搭建Spring框架
6.搭建hibernate框架
将hibernate配置各种数据注入到applicationContext.xml中
7.回到第三步,Myeclipse Database Explorer窗口
增加反转引擎
8.搭建struts2框架
除默认包之外一定加上struts 2 spring 类库
9.修改web.xml
增加两段代码:
a.监听器(ContextLoaderListener)
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
b.上下文参数
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:applicationContext.xml</param-value>
</context-param>
10.添加Action类
11.修改struts.xml文件
12.修改applicationContext.xml文件
13.编写jsp代码
1.数据库部分:建库,建表,加数据,测试数据
注意:建表一定要有主键
2.建项目:webSSH(web项目)
3.打开MyEclipse Database Explorer窗口
配置数据库有关的各种参数:驱动包,url,username,password
4.回到第二步,包资源管理窗口
5.搭建Spring框架
6.搭建hibernate框架
将hibernate配置各种数据注入到applicationContext.xml中
7.回到第三步,Myeclipse Database Explorer窗口
增加反转引擎
8.搭建struts2框架
除默认包之外一定加上struts 2 spring 类库
9.修改web.xml
增加两段代码:
a.监听器(ContextLoaderListener)
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
b.上下文参数
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:applicationContext.xml</param-value>
</context-param>
10.添加Action类
11.修改struts.xml文件
12.修改applicationContext.xml文件
13.编写jsp代码