hibernate配置jndi
tomcat里的conf->context.xml
<Resource name="mysql"
auth="Container" type="javax.sql.DataSource"
driverClassName="com.mysql.jdbc.Driver"
url="jdbc:mysql://localhost:3306/test"
username="root"
password="123456"
maxActive="100"
maxIdle="30"
maxWait="10000"
/>
hibernate.cfg.xml
<hibernate-configuration>
<session-factory>
<property name="connection.datasource">
java:comp/env/mysql
</property>
<property name="dialect">
org.hibernate.dialect.MySQLDialect
</property>
<mapping resource="com/dan/hibernate/Stu.hbm.xml" />
</session-factory>
使用
Configuration cf=new Configuration().configure();
SessionFactory sf=cf.buildSessionFactory();
Session session=sf.openSession();
Stu stu=(Stu) session.get(Stu.class, 1);
out.println(stu.getId());
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。