码迷,mamicode.com
首页 > 其他好文 > 详细

SSH环境搭建,配置整合初步(一)

时间:2014-04-29 13:16:21      阅读:304      评论:0      收藏:0      [点我收藏+]

标签: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




声明一个bean

(在bean/xml文件加入 

<!-- 自动扫描与装配bean -->

<context:component-scan base-package="你的包名"></context:component-scan>)


@Component("beanName")
@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环境搭建,配置整合初步(一)

标签:ssh

原文地址:http://blog.csdn.net/fangchao3652/article/details/24643001

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!