首页 > 代码库 > SSH环境搭建,配置整合初步(一)
SSH环境搭建,配置整合初步(一)
1,新Web工程,并把编码设为utf-8(所有的都是uft8数据库也是,就不会乱码了)
2,添加框架环境
Junit
Struts2
Hibernate
Spring
3,整合SSH
Struts2与Spring整合
Hibernate与Spring整合
4,资源分类
5,配置日志
Struts2
jar包
struts.xml, web.xml
Hibernate
jar包:核心包, 必须包, jpa, c3p0, jdbc
hibernate.cfg.xml, *.hbm.xml
Spring
jar包
appicationContext.xml/beans.xml
@Controller
@Service
@Repository
配置bean的scope
@Scope("prototype")
注入bean
@Resource
Spring与Struts2整合
1,在web.xml中配置Spring的监听器
2,加一个jar包
Hibernate与Spring整合
1,管理SessionFactory实例(只需要一个)
2,声明式事务管理
Spring
IOC 管理对象..
AOP 事务管理..
代码:
boolean needLog = ConfigFile.getBooleanValue("needLog");
if( needLog ){
System.out.println("xxx"); // System.err.println("");
}
配置文件(mylog.properties)
needLog = true/false
slf4j
JDK logging --> logging.properties
Log4j --> log4j.properties
...
debug 调试信息
info 一般信息
warn 警告
error 错误
2,添加框架环境
Junit
Struts2
Hibernate
Spring
3,整合SSH
Struts2与Spring整合
Hibernate与Spring整合
4,资源分类
5,配置日志
Struts2
jar包
struts.xml, web.xml
Hibernate
jar包:核心包, 必须包, jpa, c3p0, jdbc
hibernate.cfg.xml, *.hbm.xml
Spring
jar包
appicationContext.xml/beans.xml
声明一个bean
(在bean/xml文件加入
<!-- 自动扫描与装配bean -->
<context:component-scan base-package="你的包名"></context:component-scan>)
@Controller
@Service
@Repository
配置bean的scope
@Scope("prototype")
注入bean
@Resource
Spring与Struts2整合
1,在web.xml中配置Spring的监听器
2,加一个jar包
Hibernate与Spring整合
1,管理SessionFactory实例(只需要一个)
2,声明式事务管理
Spring
IOC 管理对象..
AOP 事务管理..
代码:
boolean needLog = ConfigFile.getBooleanValue("needLog");
if( needLog ){
System.out.println("xxx"); // System.err.println("");
}
配置文件(mylog.properties)
needLog = true/false
slf4j
JDK logging --> logging.properties
Log4j --> log4j.properties
...
debug 调试信息
info 一般信息
warn 警告
error 错误
fatal 严重错误
================================================ 基本功能
User, UserDao
save(User user), update(), delete(), find(), ...
Role, RoleDao
save(Role role), update(), delete(), find(), ...
Student, StudentDao
save(Student student), update(), delete(), find(), ...
...
BaseDao<T>
save(T t), update(), delete(), find()
UserDao extends BaseDao<User> { ... }
RoleDao extends BaseDao<Role>{ ... }
...
SSH环境搭建,配置整合初步(一)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。