博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
maven 之 hibernate 文件生成
阅读量:6421 次
发布时间:2019-06-23

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

hot3.png

1. 编写Pom.xml文件,内容如下

4.0.0
my.test
myHiberante
1.0
myHiberante
http://maven.apache.org
org.codehaus.mojo
hibernate3-maven-plugin
2.2
hbm2java
hibernate/java
jdbcconfiguration
hbm2hbmxml
hibernate/hbm
jdbcconfiguration
model.rev.xml
hibernate.properties
true
false
mysql
mysql-connector-java
5.0.8
cglib
cglib-nodep
2.1_3
mysql
mysql-connector-java
5.0.8
log4j
log4j
1.2.14-ext
compile
hbm2java
hbm2hbmxml

 2. 在本目录下新建以下两个文件:

a. model.rev.xml

b.hibernate.properties

hibernate.dialect = org.hibernate.dialect.MySQLInnoDBDialecthibernate.connection.driver_class = com.mysql.jdbc.Driverhibernate.connection.url = jdbc:mysql://localhost:3306/contacthibernate.connection.username = roothibernate.connection.password= 1hibernate.default_schema = contact

3. 运行maven 命令

mvn hibernate3:hbm2java

4. 得到的生成文件目录

6. 完毕

 

转载于:https://my.oschina.net/frankies/blog/69124

你可能感兴趣的文章
PANDAS 数据合并与重塑(join/merge篇)
查看>>
文件时间信息在测试中的应用
查看>>
Exception loading sessions from persistent storage (tomcat异常)
查看>>
直播疑难杂症排查(8)— 播放杂音、噪音、回声问题
查看>>
如何写gdb命令脚本
查看>>
Android ListView展示不同的布局
查看>>
iOS宏(自己使用,持续更新)
查看>>
手把手玩转win8开发系列课程(3)
查看>>
NGINX引入线程池 性能提升9倍
查看>>
《淘宝技术这十年》读书笔记 (四). 分布式时代和中间件
查看>>
linux下mongodb定时备份指定的集合
查看>>
oVirt JBAS server start failed, ajp proxy cann't server correct. ovirt-engine URL cann't open
查看>>
CDP WebConsole上线公告
查看>>
ubuntu下安装摄像头应用程序xawtv
查看>>
PostgreSQL 如何比较两个表的定义是否一致
查看>>
Ambari安装Hadoop集群
查看>>
WCF学习之旅—基于ServiceDebug的异常处理(十七)
查看>>
CLREX
查看>>
再也不用担心this指向的问题了
查看>>
PHP那些事儿
查看>>