博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hibernate spring annotation setup
阅读量:6237 次
发布时间:2019-06-22

本文共 3178 字,大约阅读时间需要 10 分钟。

  1. First step setup for the pom.xml with hibernate dependency ,

hibernate dependency need to before the struts2,because the javassist dependency

 
com.google.guava
guava
RELEASE
 
javax.servlet
javax.servlet-api
${servlet.version}
provided
 
javax.servlet.jsp
jsp-api
${servlet.jsp.version}
jar
test
 
 
log4j
log4j
${log4j.version}
 
junit
junit
${junit.version}
test
 
 
org.hibernate
hibernate-core
${hibernate.version}
 
org.jboss.spec.javax.transaction
jboss-transaction-api_1.2_spec
${jboss.api.version}
 
 
org.springframework
spring-core
${spring.version}
 
org.springframework
spring-context
${spring.version}
 
org.springframework
spring-jdbc
${spring.version}
 
org.springframework
spring-tx
${spring.version}
 
org.springframework
spring-beans
${spring.version}
 
org.springframework
spring-web
${spring.version}
 
org.springframework
spring-expression
${spring.version}
 
org.springframework
spring-orm
${spring.version}
 
commons-dbcp
commons-dbcp
${spring.dbcp.version}
 
xml-apis
xml-apis
${spring.xmapis.version}
 
org.apache.struts
struts2-core
${struts2.version}
 
org.apache.struts
struts2-convention-plugin
${struts2.version}
 
org.apache.struts
struts2-json-plugin
${struts2.version}
 
org.apache.struts
struts2-config-browser-plugin
${struts2.version}
 
org.apache.struts
struts2-junit-plugin
${struts2.version}
test
 
org.apache.struts
struts2-spring-plugin
${struts2.version}
 
 
2. ApplicationContext.xml for hibernate :
 
 
class="org.springframework.orm.hibernate5.LocalSessionFactoryBean">
${hibernate.hbm2ddl.auto}
${hibernate.dialect}
${hibernate.show_sql}
${hibernate.format_sql}
 
 
 
 

3. Install the hibernate tool to generate the entity class automatically:

choose the “hibernate tool” and “hibernate maven integration” and follow the step to install it .

4.using the hibernate reverse engineering(reveng.xml) to generate the reveng.xml file

5.using the hibernate code generate tool to generate the hibernate entities

6.create a new hibernate.cfg.xml file and then create the hibernate console

7.then you can use the HQL editor and hibernate criteria editor .

转载地址:http://uizia.baihongyu.com/

你可能感兴趣的文章
flutter中的异步
查看>>
计算机高手也不能编出俄罗斯方块——计算机达人成长之路(16)
查看>>
error LNK2001: 无法解析的外部符号 __CrtDbgReport
查看>>
【多线程】的简单理解&进程 and【你的电脑是几核的?】
查看>>
# 2017-2018-1 20155224 《信息安全系统设计基础》第七周学习总结
查看>>
scikit-learn预处理实例之一:使用FunctionTransformer选择列
查看>>
【距离GDOI:137天】 扩展KMP...字符串QAQ
查看>>
Oracle 10g 下载地址
查看>>
c# Unity依赖注入WebService
查看>>
邮件客户端导入邮件通讯录地址薄
查看>>
java中异常抛出后代码还会继续执行吗
查看>>
oracle 学习摘记
查看>>
IOS代码布局(一) UIView
查看>>
如何解决开机出现Missing operating system的故障
查看>>
Android AudioPolicyService服务启动过程
查看>>
SVG的a链接
查看>>
MSSQL查找前一天,前一月,前一年的数据,对比当前时间记录查找超过一年,一月,一天的数据...
查看>>
基于三星I9250演示自己弄的Miracast功能-手机对手机
查看>>
【转】MOCK测试
查看>>
pyhon——进程线程、与协程基础概述
查看>>