社区
Java EE
帖子详情
HibernateException和SQLExcetion有什么关系?
guan_tu
2014-05-07 08:57:56
HibernateException是对SQLException进行了自定义吗?
如果在使用hibernate框架时,只要是在操作数据库是发生了异常,程序中使用HibernateException都可以捕捉到吗?
...全文
207
2
打赏
收藏
HibernateException和SQLExcetion有什么关系?
HibernateException是对SQLException进行了自定义吗? 如果在使用hibernate框架时,只要是在操作数据库是发生了异常,程序中使用HibernateException都可以捕捉到吗?
复制链接
扫一扫
分享
转发到动态
举报
AI
作业
写回复
配置赞助广告
用AI写文章
2 条
回复
切换为时间正序
请发表友善的回复…
发表回复
打赏红包
teemai
2014-05-07
打赏
举报
回复
hibernate里面会使用到最基本的jdbc操作。jdbc里面会抛出基本的sqlexception,hibernate抛出的异常有可能是包含了sqlexception,但是hibernate的异常还有很大一部分是自己的实现时抛出的
小灯光环
2014-05-07
打赏
举报
回复
hibernate exception应该是在使用hibernateAPI时出现的异常都可以捕捉到。 sql exception应该是在在使用jdbcAPI时出现的异常都可以捕捉到。 hibernate本身就是封装了jdbc的持久层框架,所以这两个异常应该没有什么直接关系吧。
解决SpringDataJPA报错:org.
hibernate
.
Hibernate
Exce
pt
ion
: Access to DialectResolut
ion
Info cannot be null w
问题描述 用SpringBoot + Spring Data JPA操作数据库 项目启动的时候 报了一个错 SpringBoot的版本是2.2.6.RELEASE org.springframework.beans.factory.BeanCreat
ion
Exce
pt
ion
: Error creating bean with name 'entityManagerFactory' defined in class path resource [org/springframework/boot/autoconfigure/orm/jpa/
Hibernate
JpaConfigurat
ion
.cla
spring_MVC源码
弃用了struts,用spring mvc框架做了几个项目,感觉都不错,而且使用了注解方式,可以省掉一大堆配置文件。本文主要介绍使用注解方式配置的spring mvc,之前写的spring3.0 mvc和rest小例子没有介绍到数据层的内容,现在这一篇补上。下面开始贴代码。 文中用的框架版本:spring 3,
hibernate
3,没有的,自己上网下。 先说web.xml配置: [java] view plaincopy 01.<?xml vers
ion
="1.0" encoding="UTF-8"?> 02.
ion="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" vers
ion
="2.5"> 03.
s3h3
04.
05.
contextConfigLocat
ion
06.
classpath:applicat
ion
Context*.xml
07.
08.
09.
org.springframework.web.context.ContextLoaderListener
10.
11. 12.
13.
spring
14.
org.springframework.web.servlet.DispatcherServlet
15.
1
16.
17.
18.
spring
<!-- 这里在配成spring,下边也要写一个名为spring-servlet.xml的文件,主要用来配置它的controller --> 19.
*.do
20.
21.
22.
index.jsp
23.
24.
spring-servlet,主要配置controller的信息 [java] view plaincopy 01.<?xml vers
ion
="1.0" encoding="UTF-8"?> 02.
ion="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd 06. http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd 07. http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd 08. http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd"> 09. 10.
ion-config /> 11. <!-- 把标记了@Controller注解的类转换为bean --> 12.
13. <!-- 启动Spring MVC的注解功能,完成请求和注解POJO的映射 --> 14.
15. 16. <!-- 对模型视图名称的解析,即在模型视图名称添加前后缀 --> 17.
19. 20.
23.
applicat
ion
Context.xml代码 [java] view plaincopy 01.<?xml vers
ion
="1.0" encoding="UTF-8"?> 02.
ion=" 07. http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd 08. http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd 09. http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd 10. http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd"> 11. 12.
ion-config /> 13.
<!-- 自动扫描所有注解该路径 --> 14. 15.
ion="classpath:/
hibernate
.properties" /> 16. 17.
19.
20.
21.
22.
${dataSource.dialect}
23.
${dataSource.hbm2ddl.auto}
24.
update
25.
26.
27.
28.
29.
com.mvc.entity
<!-- 扫描实体类,也就是平时所说的model --> 30.
31.
32.
33. 34.
36.
37.
38.
39. 40.
42.
43.
44.
45.
46.
47. <!-- Dao的实现 --> 48.
49.
50.
51.
ion-driven transact
ion
-manager="transact
ion
Manager" /> 52.
ion-driven mode="aspectj"/> 53. 54.
55.
hibernate
.properties数据库连接配置 [java] view plaincopy 01.dataSource.password=123 02.dataSource.username=root 03.dataSource.databaseName=test 04.dataSource.driverClassName=com.my
sql
.jdbc.Driver 05.dataSource.dialect=org.
hibernate
.dialect.My
SQL
5Dialect 06.dataSource.serverName=localhost:3306 07.dataSource.url=jdbc:my
sql
://localhost:3306/test 08.dataSource.properties=user=${dataSource.username};databaseName=${dataSource.databaseName};serverName=${dataSource.serverName};password=${dataSource.password} 09.dataSource.hbm2ddl.auto=update 配置已经完成,下面开始例子 先在数据库建表,例子用的是my
sql
数据库 [java] view plaincopy 01.CREATE TABLE `test`.`student` ( 02. `id` int(10) unsigned NOT NULL AUTO_INCREMENT, 03. `name` varchar(45) NOT NULL, 04. `psw` varchar(45) NOT NULL, 05. PRIMARY KEY (`id`) 06.) 建好表后,生成实体类 [java] view plaincopy 01.package com.mvc.entity; 02. 03.import java.io.Serializable; 04. 05.import javax.persistence.Basic; 06.import javax.persistence.Column; 07.import javax.persistence.Entity; 08.import javax.persistence.GeneratedValue; 09.import javax.persistence.Generat
ion
Type; 10.import javax.persistence.Id; 11.import javax.persistence.Table; 12. 13.@Entity 14.@Table(name = "student") 15.public class Student implements Serializable { 16. private static final long serialVers
ion
UID = 1L; 17. @Id 18. @Basic(opt
ion
al = false) 19. @GeneratedValue(strategy = Generat
ion
Type.IDENTITY) 20. @Column(name = "id", nullable = false) 21. private Integer id; 22. @Column(name = "name") 23. private String user; 24. @Column(name = "psw") 25. private String psw; 26. public Integer getId() { 27. return id; 28. } 29. public void setId(Integer id) { 30. this.id = id; 31. } 32. 33. public String getUser() { 34. return user; 35. } 36. public void setUser(String user) { 37. this.user = user; 38. } 39. public String getPsw() { 40. return psw; 41. } 42. public void setPsw(String psw) { 43. this.psw = psw; 44. } 45.} Dao层实现 [java] view plaincopy 01.package com.mvc.dao; 02. 03.import java.util.List; 04. 05.public interface EntityDao { 06. public List<Object> createQuery(final String queryString); 07. public Object save(final Object model); 08. public void update(final Object model); 09. public void delete(final Object model); 10.} [java] view plaincopy 01.package com.mvc.dao; 02. 03.import java.util.List; 04. 05.import org.
hibernate
.Query; 06.import org.springframework.orm.
hibernate
3.
Hibernate
Callback; 07.import org.springframework.orm.
hibernate
3.support.
Hibernate
DaoSupport; 08. 09.public class EntityDaoImpl extends
Hibernate
DaoSupport implements EntityDao{ 10. public List<Object> createQuery(final String queryString) { 11. return (List<Object>) get
Hibernate
Template().execute( 12. new
Hibernate
Callback<Object>() { 13. public Object doIn
Hibernate
(org.
hibernate
.Sess
ion
sess
ion
) 14. throws org.
hibernate
.
Hibernate
Exce
pt
ion
{ 15. Query query = sess
ion
.createQuery(queryString); 16. List<Object> rows = query.list(); 17. return rows; 18. } 19. }); 20. } 21. public Object save(final Object model) { 22. return get
Hibernate
Template().execute( 23. new
Hibernate
Callback<Object>() { 24. public Object doIn
Hibernate
(org.
hibernate
.Sess
ion
sess
ion
) 25. throws org.
hibernate
.
Hibernate
Exce
pt
ion
{ 26. sess
ion
.save(model); 27. return null; 28. } 29. }); 30. } 31. public void update(final Object model) { 32. get
Hibernate
Template().execute(new
Hibernate
Callback<Object>() { 33. public Object doIn
Hibernate
(org.
hibernate
.Sess
ion
sess
ion
) 34. throws org.
hibernate
.
Hibernate
Exce
pt
ion
{ 35. sess
ion
.update(model); 36. return null; 37. } 38. }); 39. } 40. public void delete(final Object model) { 41. get
Hibernate
Template().execute(new
Hibernate
Callback<Object>() { 42. public Object doIn
Hibernate
(org.
hibernate
.Sess
ion
sess
ion
) 43. throws org.
hibernate
.
Hibernate
Exce
pt
ion
{ 44. sess
ion
.delete(model); 45. return null; 46. } 47. }); 48. } 49.} Dao在applicat
ion
Context.xml注入
Dao只有一个类的实现,直接供其它service层调用,如果你想更换为其它的Dao实现,也只需修改这里的配置就行了。 开始写view页面,WEB-INF/view下新建页面student.jsp,WEB-INF/view这路径是在spring-servlet.xml文件配置的,你可以配置成其它,也可以多个路径。student.jsp代码 [xhtml] view plaincopy 01.<%@ page language="java" contentType="text/html; charset=UTF-8" 02. pageEncoding="UTF-8"%> 03.<%@ include file="/include/head.jsp"%> 04. 05.<html> 06.<head> 07.<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 08.<title>添加</title> 09.
11.// -->
<!-- 13.table{ border-collapse:collapse; } 14.td{ border:1px solid #f00; } 15.--><style mce_bogus="1">table{ border-collapse:collapse; } 16.td{ border:1px solid #f00; }</style> 17.
<!-- 18.funct
ion
add(){ 19. [removed].href="<%=request.getContextPath() %>/student.do?method=add"; 20.} 21. 22.funct
ion
del(id){ 23.$.ajax( { 24. type : "POST", 25. url : "<%=request.getContextPath()%>/student.do?method=del&id;=" + id, 26. dataType: "json", 27. success : funct
ion
(data) { 28. if(data.del == "true"){ 29. alert("删除成功!"); 30. $("#" + id).remove(); 31. } 32. else{ 33. alert("删除失败!"); 34. } 35. }, 36. error :funct
ion
(){ 37. alert("网络连接出错!"); 38. } 39.}); 40.} 41.// -->
47.
48.
序号
49.
姓名
50.
密码
51.
操作
52.
53.
54.
"> 55.
56.
57.
58.
59. <input type="button" value="编辑"/> 60. <input type="button" value="${student.id}"/>')" value="删除"/> 61.
62. 63.
64. 65. 66.</body> 67.</html> student_add.jsp [xhtml] view plaincopy 01.<%@ page language="java" contentType="text/html; charset=UTF-8" 02. pageEncoding="UTF-8"%> 03.<%@ include file="/include/head.jsp"%> 04. 05.<html> 06.<head> 07.<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 08.<title>学生添加</title> 09.
<!-- 10.funct
ion
turnback(){ 11. [removed].href="<%=request.getContextPath() %>/student.do"; 12.} 13.// -->
ion="<%=request.getContextPath() %>/student.do?method=save"> 17.
18.
19.
姓名
<input id="user" name="user" type="text" /></td>
20.
密码
<input id="psw" name="psw" type="text" /></td>
21.
<input type="submit" value="提交"/><input type="button" value="返回" />
22.
23. 24.</form> 25.</body> 26.</html> controller类实现,只需把注解写上,spring就会自动帮你找到相应的bean,相应的注解标记意义,不明白的,可以自己查下@Service,@Controller,@Entity等等的内容。 [java] view plaincopy 01.package com.mvc.controller; 02. 03.import java.util.List; 04. 05.import javax.servlet.http.HttpServletRequest; 06.import javax.servlet.http.HttpServletResponse; 07. 08.import org.apache.commons.logging.Log; 09.import org.apache.commons.logging.LogFactory; 10.import org.springframework.beans.factory.annotat
ion
.Autowired; 11.import org.springframework.stereotype.Controller; 12.import org.springframework.ui.ModelMap; 13.import org.springframework.web.bind.annotat
ion
.RequestMapping; 14.import org.springframework.web.bind.annotat
ion
.RequestMethod; 15.import org.springframework.web.bind.annotat
ion
.RequestParam; 16.import org.springframework.web.servlet.ModelAndView; 17. 18.import com.mvc.entity.Student; 19.import com.mvc.service.StudentService; 20. 21.@Controller 22.@RequestMapping("/student.do") 23.public class StudentController { 24. protected final transient Log log = LogFactory 25. .getLog(StudentController.class); 26. @Autowired 27. private StudentService studentService; 28. public StudentController(){ 29. 30. } 31. 32. @RequestMapping 33. public String load(ModelMap modelMap){ 34. List<Object> list = studentService.getStudentList(); 35. modelMap.put("list", list); 36. return "student"; 37. } 38. 39. @RequestMapping(params = "method=add") 40. public String add(HttpServletRequest request, ModelMap modelMap) throws
Exce
pt
ion
{ 41. return "student_add"; 42. } 43. 44. @RequestMapping(params = "method=save") 45. public String save(HttpServletRequest request, ModelMap modelMap){ 46. String user = request.getParameter("user"); 47. String psw = request.getParameter("psw"); 48. Student st = new Student(); 49. st.setUser(user); 50. st.setPsw(psw); 51. try{ 52. studentService.save(st); 53. modelMap.put("addstate", "添加成功"); 54. } 55. catch(
Exce
pt
ion
e){ 56. log.error(e.getMessage()); 57. modelMap.put("addstate", "添加失败"); 58. } 59. 60. return "student_add"; 61. } 62. 63. @RequestMapping(params = "method=del") 64. public void del(@RequestParam("id") String id, HttpServletResponse response){ 65. try{ 66. Student st = new Student(); 67. st.setId(Integer.valueOf(id)); 68. studentService.delete(st); 69. response.getWriter().print("{/"del/":/"true/"}"); 70. } 71. catch(
Exce
pt
ion
e){ 72. log.error(e.getMessage()); 73. e.printStackTrace(); 74. } 75. } 76.} service类实现 [java] view plaincopy 01.package com.mvc.service; 02. 03.import java.util.List; 04. 05.import org.springframework.beans.factory.annotat
ion
.Autowired; 06.import org.springframework.stereotype.Service; 07.import org.springframework.transact
ion
.annotat
ion
.Transact
ion
al; 08. 09.import com.mvc.dao.EntityDao; 10.import com.mvc.entity.Student; 11. 12.@Service 13.public class StudentService { 14. @Autowired 15. private EntityDao entityDao; 16. 17. @Transact
ion
al 18. public List<Object> getStudentList(){ 19. StringBuffer sff = new StringBuffer(); 20. sff.append("select a from ").append(Student.class.getSimpleName()).append(" a "); 21. List<Object> list = entityDao.createQuery(sff.toString()); 22. return list; 23. } 24. 25. public void save(Student st){ 26. entityDao.save(st); 27. } 28. public void delete(Object obj){ 29. entityDao.delete(obj); 30. } 31.} OK,例子写完。有其它业务内容,只需直接新建view,并实现相应comtroller和service就行了,配置和dao层的内容基本不变,也就是每次只需写jsp(view),controller和service调用dao就行了。 怎样,看了这个,spring mvc是不是比ssh实现更方便灵活。
Hibernate
Exce
pt
ion
: identifier of an instance of
org.
hibernate
.
Hibernate
Exce
pt
ion
: identifier of an instance of 项目的包名was altered from XXX(id) to XXX(id) 我的是因为之前一直用mybatis,忘记了
hibernate
是主键在实体上设置的,而我又setid,重复设置了,报这个错误绝大多数是id设置重复的问题, 其它的网友有解决方法,例如这个网友的https://www.cnblogs.com/sxdcgaq8080/p/6543032.html(有问题请联系
org.
hibernate
.
Hibernate
Exce
pt
ion
: identifier of an instance 错误可能出现的情况
最近在使用
hibernate
jpa中出现了该错误org.
hibernate
.
Hibernate
Exce
pt
ion
: identifier of an instance 并且反复检查没有映射没有任何问题 最后发现问题竟然是主键的问题 比如我在一个合同对象中包含一个附件即1对1的
关系
那么该合同的主键id假如在丢失后,进行插入不会有问题 无非是一个是JpaRepository进行保存操作一个是修改操作 区分是通过主键的id 但是如果后续附件要关联上合同的外键 那么当合同的主键丢失后 hibernat...
org.
hibernate
.
Hibernate
Exce
pt
ion
org.
hibernate
.
Hibernate
Exce
pt
ion
: identifier of an instance of com.** was altered from 20150314000002 to 20150318000001 描述:循环插入数据库时出现此异常 原因:
hibernate
缓存中的id改变,而数据库中此id为主键不允许修改,试图修改数据库中的主键造成的 ...
Java EE
67,550
社区成员
225,863
社区内容
发帖
与我相关
我的任务
Java EE
J2EE只是Java企业应用。我们需要一个跨J2SE/WEB/EJB的微容器,保护我们的业务核心组件(中间件),以延续它的生命力,而不是依赖J2SE/J2EE版本。
复制链接
扫一扫
分享
社区描述
J2EE只是Java企业应用。我们需要一个跨J2SE/WEB/EJB的微容器,保护我们的业务核心组件(中间件),以延续它的生命力,而不是依赖J2SE/J2EE版本。
社区管理员
加入社区
获取链接或二维码
近7日
近30日
至今
加载中
查看更多榜单
社区公告
暂无公告
试试用AI创作助手写篇文章吧
+ 用AI写文章