SSH
女雅乱
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Notes of hibernate about Xiaxin
In order to test hibernate example ,create a simple project is enough,then we shoule have these libs for simple test:hibernate3.jar,log4j-1.2.8.jar and the jar of oracle driver .add them to the libera...2009-10-11 22:37:26 · 137 阅读 · 0 评论 -
Knowledge of JSP for interview
Three compile command of JSP: @page,@include,@taglib <%@page[language="Java"][extends="package.class"] --the parent class should be extended[import= "package. class | package. *},…"] --import some...2009-09-09 15:15:26 · 143 阅读 · 0 评论 -
Wiring collections , from java in action
The method implements: public class SingleBand implements Performer{ public SingleBand(){} private Collection<Instrument> instruments; public void setInstrument(Collection<Inst...2009-08-11 20:27:30 · 132 阅读 · 0 评论 -
The compare of Filter,CGLib and Dynamic proxy
1.If you want to use Filter for intercept ,you shoule implements Filter interface which have three methods you must implement it:init(),doFilter() and destroy() : public class FilterTest implements F...2009-08-11 19:30:00 · 118 阅读 · 0 评论 -
Call procedure by hibernate
http://blog.youkuaiyun.com/wumingabc/archive/2009/05/19/4202007.aspx原创 2009-07-28 09:17:21 · 192 阅读 · 0 评论 -
spring transaction testing with hibernate
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.sp...原创 2010-01-12 17:20:19 · 124 阅读 · 0 评论 -
Spring DAO with Jdbc and Hibernate
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.sp...原创 2010-01-07 17:34:22 · 114 阅读 · 0 评论 -
Spring AOP config file and explaination
I have give the comment in xml file: <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org...原创 2010-01-06 14:50:09 · 129 阅读 · 0 评论 -
Ant
First,download a apache-ant-1.7.1 from apache site on network.then u need to config the "Path" of environment variables.If the ant unzip at E:\apache-ant-1.7.1,so u need add "E:\apache-ant-1.7.1\bin" ...原创 2010-01-04 18:34:40 · 121 阅读 · 0 评论 -
unique foreign key mapping of hibernate example
First the ddl language of the table used with foreign key as : CREATE TABLE `t_operation_log` ( `id` BIGINT(24) NOT NULL AUTO_INCREMENT, `resourceId` BIGINT(24) NOT NULL, `systemlogId` BIGIN...2010-03-09 11:29:05 · 134 阅读 · 0 评论 -
controller components of struts
Controller components of struts mainly include: ActionServlet: as a center controller of struts framework. RequestProcessor:as the request processor of every sub applicaiton model. Acti...2009-11-18 18:16:54 · 132 阅读 · 0 评论 -
one-to-one mapping of hibernate
first ,create two tables you want to make the OR mapping. create table T_PASSPORT ( ID NUMBER(4) not null primary key, SERIAL VARCHAR2(30) not null ) create table T_PERSON ( ID NUM...2009-10-13 18:00:53 · 130 阅读 · 0 评论 -
query by hibernate
This simple example is show the query result of Hibernate,the database is sqlservel2000,ok,first,create a web project in eclipse,then click the right on this project to add hibernate capabilities in M...2009-09-10 22:34:05 · 111 阅读 · 0 评论
分享