TA的每日心情 | 衰 2021-2-2 11:21 |
---|
签到天数: 36 天 [LV.5]常住居民I
|
/**
/ E0 R8 W$ e1 g& N, W4 I+ H' m9 A8 z * 三大框架整合,版本都是最新的
) g2 S+ X0 U, @# l( ?% ] * spring 4.0.5 struts2.3.16.3 hibernate 4.3.52 k/ Y; ^ w: }# z" e; P
*数据库是mysql,JDK是1.6,Tomcat 7.0' g2 n5 {, L/ D( P
*使用了Hibernate注解,自动创建数据库和表,数据库是hehe,用户名和密码请自己修改# O0 T# p& v! T/ h5 m
*时间:2014-5-27
3 N- c5 g( s0 c6 V2 y' E* h *作者:男孩的天职
" V& Q/ S" [$ T( T" u3 M *" b1 i6 P& g. e4 q1 H
*/& O2 [+ Z2 z% f I' F$ E$ v, L. C
测试 spring:
3 k X2 h7 k; P4 d5 @1 t$ B0 d5 |- /**
7 o7 W; R8 G9 \1 c) f4 X2 t9 w - * 测试Spring是否整合成功0 g _! K# D$ C4 E
- * 同时要开启事务和提交事务* X% s. l/ u/ `6 N
- * 整合之后的,不用开启,因为事务已经交给Spring了,所以可以注释掉开启事务和提交事务" ]) u/ r3 v' K, v$ v+ M0 O5 b4 K
- */- q% K; o8 D' T
- public static void main(String[] args) {
4 d/ W) c+ ?7 I - 1 Z2 x3 d" i8 k# v \0 ?
- ApplicationContext applicationContext=new ClassPathXmlApplicationContext("applicationContext.xml");
# f# ^+ r, J; F9 ^5 [1 o* C - YhxxDao yhxxDao=(YhxxDao) applicationContext.getBean("yhxxDao");9 I1 U! i4 W/ \! a" ]; W
- Yhxx yhxx=new Yhxx();# M: s- H {/ }- w u
- yhxx.setId(2);//id=2要存在
0 U. v* T" {4 ]+ A+ j: ^4 v - yhxxDao.deleteYhxx(yhxx);) J+ K2 [' W" X, R Z' H
- }
复制代码 测试hibernate:% A7 T* \! a3 a2 N7 W4 Q0 \
- /**5 W0 ]/ `" k7 O. K
- * 测试Hiberante是否于数据库连接成功: y. ?) ]8 U8 v5 j
- */ A$ _+ F& c! ~( d
- */
- ? M" ^3 [7 o: P4 |. z# R4 e; } - public static void main(String[] args) {
( g, u, }! w( w - ( W) g( `: f" L
- ! D1 m( G+ j/ f( @5 O3 J7 x
- Session session= HibernateUtil.getSession();
# ~+ b* A1 j) W/ ~2 A - System.out.println(session);
( L; q5 H' r1 B8 t - 7 @( m1 }- o5 B
- }
复制代码
! B/ L# \8 K% k" F" o5 M0 s# R整合资源下载:点击下载
! ~7 F2 N! C5 }: k5 }& I8 g/ ^; g, k1 ~
# i* s. a7 `) R7 M- X, M" E; u
% e/ W% W/ ?$ q1 R7 t* O c
|
|