一个简单的hibernate与spring集成 - 编程入门网
作者 佚名技术
来源 NET编程
浏览
发布时间 2012-06-15
log.error("attach failed", re);
throw re;
}
}
public static SstestDAO getFromApplicationContext(ApplicationContext
ctx) {
return (SstestDAO) ctx.getBean("SstestDAO");
}
}
一个简单的hibernate与spring集成(6)时间:2011-09-09 blogjava qinSstest.java package springDao; public class Sstest implements java.io.Serializable { // Fields private Integer id; private String username; private String password; // Constructors /** default constructor */ public Sstest() { } /** full constructor */ public Sstest(String username, String password) { this.username = username; this.password = password; } // Property accessors public Integer getId() { return this.id; } public void setId(Integer id) { this.id = id; } public String getUsername() { return this.username; } public void setUsername(String username) { this.username = username; } public String getPassword() { return this.password; } public void setPassword(String password) { this.password = password; } } 一个简单的hibernate与spring集成(7)时间:2011-09-09 blogjava qinhibernate.cfg.xml <?xml version=''1.0'' encoding=''UTF-8''?> <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-configuration- 3.0.dtd"> <!-- Generated by MyEclipse Hibernate Tools. -- > <hibernate-configuration> <session-factory> <property name="connection.username">sa</property> <property name="connection.url"> jdbc:microsoft:sqlserver://127.0.0.1:1433;DatabaseName=manager </property> <property name="dialect"> org.hibernate.dialect.SQLServerDialect </property> <property name="myeclipse.connection.profile"> com.microsoft.jdbc.sqlserver.SQLServerDriver </property> <property name="connection.password">wq</property> <property name="connection.driver_class"> com.microsoft.jdbc.sqlserver.SQLServerDriver </property> <!-- <mapping resource="hibernateDao/Sstest.hbm.xml" /> -- > <!-- 使用springdao --> <mapping resource="springDao/Sstest.hbm.xml" /> </session-factory> </hibernate-configuration> |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
关于一个简单的hibernate与spring集成 - 编程入门网的所有评论