已经有一个关联的托管连接错误

已经有一个关联的托管连接错误

本文介绍了已经有一个关联的托管连接错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

根本原因是

  org.hibernate.TransactionException:已经有一个关联的托管连接

如果有人能帮助我理解问题的原因。请随时询问更多详情。
我能想到的一个可能的原因是我得到这个异常的部分,并且在@JoinColumn中加入两个表并得到结果显示。我应该采取什么预防措施来避免这种情况。

  package com.next.domain; 

import static javax.persistence.GenerationType.AUTO;
import static org.apache.commons.lang.builder.EqualsBuilder.reflectionEquals;
import static org.apache.commons.lang.builder.HashCodeBuilder.reflectionHashCode;
import static org.apache.commons.lang.builder.ToStringBuilder.reflectionToString;

import java.io.Serializable;
import java.util.Date;

import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.Table;
import javax.validation.constraints.Size;
import javax.xml.bind.annotation.XmlRootElement;

@Entity
@Table(name =answers)
@XmlRootElement
public class Answer implements Serializable {
private static final long serialVersionUID = 1L ;

私人长途电话;
私人长期mQuizId;

@Size(max = 1000,message =\'Description\\'必须少于1000个字符。)
private String mContent;

私人日期mRegDate;

@Id
@GeneratedValue(strategy = AUTO)
public Long getId(){
return mId;
}

public void setId(Long id){
mId = id;


@Column(name =quiz_id)
public Long getQuizId(){
return mQuizId;
}

public void setQuizId(Long quizId){
mQuizId = quizId;


@Column(name =content)
public String getContent(){
return mContent;
}

public void setContent(String content){
mContent = content;


@Column(name =reg_date)
public Date getRegDate(){
return mRegDate;
}

public void setRegDate(Date regDate){
mRegDate = regDate;
}

@Override
public boolean equals(Object obj){
return reflectionEquals(this,obj);


@Override
public int hashCode(){
return reflectionHashCode(this);


@Override
public String toString(){
return reflectionToString(this);
}
}







package com.next.domain;

import static javax.persistence.GenerationType.AUTO;
import static org.apache.commons.lang.builder.EqualsBuilder.reflectionEquals;
import static org.apache.commons.lang.builder.HashCodeBuilder.reflectionHashCode;
import static org.apache.commons.lang.builder.ToStringBuilder.reflectionToString;

import java.io.Serializable;
import java.util.Date;
import java.util.List;

import javax.persistence.CascadeType;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.OneToMany;
import javax.persistence.Table;
import javax.validation.constraints.Size;
import javax.xml.bind.annotation.XmlRootElement;

import org.hibernate.validator.constraints.NotEmpty;

@Entity
@Table(name =quizzes)
@XmlRootElement
public class Quiz实现Serializable {
private static final long serialVersionUID = 1L ;

私人长途电话;

私人整数mSection;

private长度为mAnswerId;

@NotEmpty(message =\'Title \'不能为空)
@Size(max = 64,message =\'Title \'must少于64个字符)
private String mTitle;

@Size(max = 256,message =\'Question \'必须小于256个字符。)
private String mContent;

@Size(max = 256,message =\'Description\\'必须小于256个字符。)
private String mDescription;

私人列表<答案> mAnswers;

私人日期mRegDate;

@Id
@GeneratedValue(strategy = AUTO)
public Long getId(){
return mId;
}

public void setId(Long id){
mId = id;


@Column(name =section)
public Integer getSection(){
return mSection;
}

public void setSection(Integer mSection){
this.mSection = mSection;

$ b $ @Column(name =answer_id)
public Long getAnswerId(){
return mAnswerId;
}

public void setAnswerId(Long answer_id){
mAnswerId = answer_id;


@Column(name =title)
public String getTitle(){
return mTitle;
}

public void setTitle(String title){
mTitle = title;


@Column(name =content)
public String getContent(){
return mContent;
}

public void setContent(String content){
mContent = content;


@Column(name =description)
public String getDescription(){
return mDescription;
}

public void setDescription(String description){
mDescription = description;
}

@OneToMany(cascade = {CascadeType.MERGE,CascadeType.REMOVE})
@JoinColumn(name =quiz_id,referencedColumnName =id)
公开列表<答案> getAnswers(){
return mAnswers;
}

public void setAnswers(List< Answer> answers){
mAnswers = answers;


@Column(name =reg_date)
public Date getRegDate(){
return mRegDate;
}

public void setRegDate(Date regDate){
mRegDate = regDate;
}

@Override
public boolean equals(Object obj){
return reflectionEquals(this,obj);


@Override
public int hashCode(){
return reflectionHashCode(this);


@Override
public String toString(){
return reflectionToString(this);
}
}







package com.next.persistence;

import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.List;
import java.util.Map;

导入javax.persistence.EntityManager;
import javax.persistence.NoResultException;
import javax.persistence.PersistenceContext;
import javax.persistence.PersistenceContextType;

import org.springframework.stereotype.Repository;
import org.springframework.transaction.annotation.Propagation;
import org.springframework.transaction.annotation.Transactional;

import com.next.domain.Answer;
import com.next.domain.Quiz;
import com.next.domain.QuizSubmission;

@Repository(quizDao)
@Transactional(propagation = Propagation.REQUIRED,rollbackFor = Throwable.class)
public class QuizDaoImpl implements QuizDao {
private static最后一个字符串QUIZ_SELECT_CLAUSE =选择新的地图(q.id为id,q.title为标题,q.regDate为regDate);
private static final String ANSWER_SELECT_CLAUSE =选择新的地图(a.id作为id,a.content作为内容);

@PersistenceContext(type = PersistenceContextType.EXTENDED)
private EntityManager em;

@Override
public void addQuiz(Quiz quiz){
em.persist(quiz);
}

@Override
public void saveQuiz(Quiz quiz){
em.merge(quiz);
}

@Override
public void deleteQuiz(long id){
try {
em.remove(getQuiz(id));
} catch(IllegalArgumentException ie){
return;
}
}

@覆盖
公共测验getQuiz(long id){
测验测验= null;

尝试{
quiz = em.find(Quiz.class,id);
} catch(NoResultException e){}

return quiz;
}

@Override
public void addAnswer(Answer answer){
em.persist(answer);
}

@Override
public void saveAnswer(Answer answer){
em.merge(answer);

$ b @Override
public void deleteAnswer(long id){
try {
em.remove(getAnswer(id));
} catch(IllegalArgumentException ie){
return;
}
}

@Override
public回答getAnswer(long id){
Answer answer = null;

尝试{
answer = em.find(Answer.class,id);
} catch(NoResultException e){}

返回答案;
}

@SuppressWarnings(unchecked)
@Override
public List< Map< String,Object>> getAnswers(long quizId){
return(List< Map< String,Object>>)em.createQuery(ANSWER_SELECT_CLAUSE +from Answer a where a.quizId =:quizId)
.setParameter( quizId,quizId)
.getResultList();
}

@SuppressWarnings(unchecked)
@Override
public List< Map< String,Object>> getQuizzes(int section){
return(List< Map< String,Object>>)em.createQuery(QUIZ_SELECT_CLAUSE +from Quiz q where q.section =:section order by q.regDate desc)
.setParameter(section,section)
.getResultList();
}

@SuppressWarnings(unchecked)
@Override
public List< Map< String,Object>> getQuizzesDetails(int section){
return(List< Map< String,Object>>)em.createQuery(select q from Quiz q where q.section =:section order by q.regDate desc)
.setParameter(section,section)
.getResultList();
}

@Override
public回答getAnswerByQuizId(long quizId){
Answer answer = null;

尝试{
answer = em.find(Answer.class,quizId);
} catch(NoResultException e){

}
返回答案;
}

@Override
public void addQuizSubmission(QuizSubmission quizSubmission){
em.persist(quizSubmission);
}

@Override
public void saveQuizSubmission(QuizSubmission quizSubmission){
em.merge(quizSubmission);
}

@Override
public void deleteQuizSubmission(long id){
try {
em.remove(getQuiz(id));
} catch(IllegalArgumentException ie){
return;


$ b @Override
public QuizSubmission getQuizSubmission(long id){
QuizSubmission quizSubmission = null;

尝试{
quizSubmission = em.find(QuizSubmission.class,id);
} catch(NoResultException e){}

return quizSubmission;
}

@SuppressWarnings(unchecked)
@Override
public List< Map< String,Object>> getQuizSubmissions(long quizId){
return(List< Map< String,Object>>)em.createQuery(从QuizSubmission qs中选择qs,其中qs.quizId =:quizId order by qs.date desc)
.setParameter(quizId,quizId)
.getResultList();
}

@SuppressWarnings(unchecked)
@Override
public List< QuizSubmission> getQuizSubmissions(String date){
/ * return em.createNativeQuery(SELECT`id`,`quiz_id`,`answer_id`,`date` FROM`quizzes_submissions` WHERE DATE(`date`)= =:date)
.setParameter(date,date)
.getResultList(); * /

SimpleDateFormat format = new SimpleDateFormat(yyyy-MM-dd HH:mm:ss );
日期startDate = null;
日期endDate = null;
try {
startDate = format.parse(date.trim()+00:00:00);
endDate = format.parse(date.trim()+23:59:59);
} catch(ParseException e){
e.printStackTrace();


return em.createQuery(从QuizSubmission qs选择qs WHERE qs.date BETWEEN:startDate AND:endDate)
.setParameter(startDate,startDate)
.setParameter(endDate,endDate)
.getResultList();




$ b $ p
$ b

我的控制器调用getQuizzes(int section) QuizDaoImpl,以便可以显示所有测验。 我的观察:完整的工作适用于全新部署,一旦数据库很长时间处于理想状态,问题会在6-8小时后发生

 根本原因

org.hibernate.TransactionException:已经有一个关联的托管连接
org.hibernate.engine.transaction.internal.jdbc.JdbcTransaction.doBegin(JdbcTransaction.java:65)
org.hibernate.engine.transaction.spi.AbstractTransactionImpl.begin(AbstractTransactionImpl.java:160)
org.hibernate.internal.SessionImpl.beginTransaction(SessionImpl.java:1309)
org.hibernate.ejb.TransactionImpl.begin(TransactionImpl.java:57)
org.springframework.orm.jpa .ExtendedEntityManagerCreator $ ExtendedEntityManagerInvocationHandler.enlistInCurrentTransaction(ExtendedEntityManagerCreator.java:421)
$ org.springframework.orm.jpa.ExtendedEntityManagerCreator ExtendedEntityManagerInvocationHandler.doJoinTransaction(ExtendedEntityManagerCreat or.java:398)
org.springframework.orm.jpa.ExtendedEntityManagerCreator $ ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:356)
sun.proxy。$ Proxy150.createQuery(Unknown Source)
com.next.persistence.QuizDaoImpl.getQuizzes(QuizDaoImpl.java:102)
sun.reflect.GeneratedMethodAccessor358.invoke(来源不明)
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
java.lang.reflect.Method.invoke(Method.java:601)
org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:318)
org.springframework.aop .framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:183)
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:150)
org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke (PersistenceExceptionTranslationInterceptor.java:155)
org.springframework.aop.framework .ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172)
org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:110)
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation .java:172)
org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:202)
sun.proxy。$ Proxy163.getQuizzes(Unknown Source)
com.next .service.QuizServiceImpl.getQuizzes(QuizServiceImpl.java:92)
sun.reflect.GeneratedMethodAccessor357.invoke(来源不明)
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
java.lang.reflect.Method.invoke(Method.java:601)
org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:318)
org.springframework.aop.framework。 ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:183)
org.springframework.aop.framework.ReflectiveMethodIn vocation.proceed(ReflectiveMethodInvocation.java:150)
org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:110)
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation。
org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:202)
sun.proxy。$ Proxy164.getQuizzes(Unknown Source)
com.next。 mvc.HomeController.showListPage(HomeController.java:308)
sun.reflect.GeneratedMethodAccessor356.invoke(来源不明)
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
的java .lang.reflect.Method.invoke(Method.java:601)
org.springframework.web.method.support.InvocableHandlerMethod.invoke(InvocableHandlerMethod.java:213)
org.springframework.web.method .support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:126)
org.springframework.web.servlet.mvc.method.annotation.ServletInvo cableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:96)
org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:617)
org.springframework.web.servlet。 mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:578)
org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:80)
org.springframework。 web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:923)
org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:852)
org.springframework.web.servlet.FrameworkServlet。 processRequest(FrameworkServlet.java:882)
org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:778)
javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
org.spri ngframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:77)
org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:76)
org.springframework.security.web。的FilterChainProxy $ VirtualFilterChain.doFilter(FilterChainProxy.java:311)
org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:116)
org.springframework.security.web。 access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:83)
$ org.springframework.security.web.FilterChainProxy VirtualFilterChain.doFilter(FilterChainProxy.java:323)
org.springframework.security.web。 access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:113)
$ org.springframework.security.web.FilterChainProxy VirtualFilterChain.doFilter(FilterChainProxy.java:323)
org.springframework.security.web.session。 SessionManagementFilter.doFilter(SessionManagementFilter.java:101)
$ org.springframework.security.web.FilterChainProxy VirtualFilterChain.doFilter(FilterChainProxy.java:323)
org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:113)
$ org.springframework.security.web.FilterChainProxy VirtualFilterChain.doFilter(FilterChainProxy.java:323)
org.springframework.security.web.authentication.rememberme.RememberMeAuthenticationFilter.doFilter(RememberMeAuthenticationFilter.java:146)
org.springframework.security.web.FilterChainProxy $ VirtualFilterChain.doFilter(FilterChainProxy.java:323)
org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:54)
org.springframework.security.web.FilterChainProxy $ VirtualFilterChain.doFilter(FilterChainProxy.java:323)
org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:45)
组织。 springfra mework.security.web.FilterChainProxy $ VirtualFilterChain.doFilter(FilterChainProxy.java:323)
org.springframework.security.web.authentication.www.BasicAuthenticationFilter.doFilter(BasicAuthenticationFilter.java:150)
组织。 springframework.security.web.FilterChainProxy $ VirtualFilterChain.doFilter(FilterChainProxy.java:323)
org.springframework.security.web.authentication.AbstractAuthenticationProcessingFilter.doFilter(AbstractAuthenticationProcessingFilter.java:182)
org.springframework。 security.web.FilterChainProxy $ VirtualFilterChain.doFilter(FilterChainProxy.java:323)
org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:105)
org.springframework。 security.web.FilterChainProxy $ VirtualFilterChain.doFilter(FilterChainProxy.java:323)
org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:87)
org.springframework.security。 web.FilterChainProxy $ VirtualFil terChain.doFilter(FilterChainProxy.java:323)
org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:173)
org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy的。 java:346)
org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:259)


解决方案

问题出在@PersistenceContext注释中。我有:

  @PersistenceContext(type = PersistenceContextType.EXTENDED)
private EntityManager entityManager;

我将其替换为:

  @PersistenceContext 
private EntityManager entityManager;


The root cause is

org.hibernate.TransactionException: Already have an associated managed connection

If anyone can help me in understanding the cause of the problem. Please feel free to ask for further details.One possible cause that I can think of is the section in which I am getting this exception I and doing @JoinColumn to join two table and get result to display. What precaution should I take to avoid this.

    package com.next.domain;

import static javax.persistence.GenerationType.AUTO;
import static org.apache.commons.lang.builder.EqualsBuilder.reflectionEquals;
import static org.apache.commons.lang.builder.HashCodeBuilder.reflectionHashCode;
import static org.apache.commons.lang.builder.ToStringBuilder.reflectionToString;

import java.io.Serializable;
import java.util.Date;

import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.Table;
import javax.validation.constraints.Size;
import javax.xml.bind.annotation.XmlRootElement;

@Entity
@Table(name="answers")
@XmlRootElement
public class Answer implements Serializable {
    private static final long serialVersionUID = 1L;

    private Long mId;
    private Long mQuizId;

    @Size(max=1000, message="\'Description\' must be less than 1000 characters.")
    private String mContent;

    private Date mRegDate;

    @Id
    @GeneratedValue(strategy = AUTO)
    public Long getId() {
        return mId;
    }

    public void setId(Long id) {
        mId = id;
    }

    @Column(name="quiz_id")
    public Long getQuizId() {
        return mQuizId;
    }

    public void setQuizId(Long quizId) {
        mQuizId = quizId;
    }

    @Column(name="content")
    public String getContent() {
        return mContent;
    }

    public void setContent(String content) {
        mContent = content;
    }

    @Column(name="reg_date")
    public Date getRegDate() {
        return mRegDate;
    }

    public void setRegDate(Date regDate) {
        mRegDate = regDate;
    }

    @Override
    public boolean equals(Object obj) {
        return reflectionEquals(this, obj);
    }

    @Override
    public int hashCode() {
        return reflectionHashCode(this);
    }

    @Override
    public String toString() {
        return reflectionToString(this);
    }
}







package com.next.domain;

import static javax.persistence.GenerationType.AUTO;
import static org.apache.commons.lang.builder.EqualsBuilder.reflectionEquals;
import static org.apache.commons.lang.builder.HashCodeBuilder.reflectionHashCode;
import static org.apache.commons.lang.builder.ToStringBuilder.reflectionToString;

import java.io.Serializable;
import java.util.Date;
import java.util.List;

import javax.persistence.CascadeType;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.OneToMany;
import javax.persistence.Table;
import javax.validation.constraints.Size;
import javax.xml.bind.annotation.XmlRootElement;

import org.hibernate.validator.constraints.NotEmpty;

@Entity
@Table(name="quizzes")
@XmlRootElement
public class Quiz implements Serializable {
    private static final long serialVersionUID = 1L;

    private Long mId;

    private Integer mSection;

    private Long mAnswerId;

    @NotEmpty(message="\'Title\' must not be empty.")
    @Size(max=64, message="\'Title\' must be less than 64 characters.")
    private String mTitle;

    @Size(max=256, message="\'Question\' must be less than 256 characters.")
    private String mContent;

    @Size(max=256, message="\'Description\' must be less than 256 characters.")
    private String mDescription;

    private List<Answer> mAnswers;

    private Date mRegDate;

    @Id
    @GeneratedValue(strategy = AUTO)
    public Long getId() {
        return mId;
    }

    public void setId(Long id) {
        mId = id;
    }

    @Column(name="section")
    public Integer getSection() {
        return mSection;
    }

    public void setSection(Integer mSection) {
        this.mSection = mSection;
    }

    @Column(name="answer_id")
    public Long getAnswerId() {
        return mAnswerId;
    }

    public void setAnswerId(Long answer_id) {
        mAnswerId = answer_id;
    }

    @Column(name="title")
    public String getTitle() {
        return mTitle;
    }

    public void setTitle(String title) {
        mTitle = title;
    }

    @Column(name="content")
    public String getContent() {
        return mContent;
    }

    public void setContent(String content) {
        mContent = content;
    }

    @Column(name="description")
    public String getDescription() {
        return mDescription;
    }

    public void setDescription(String description) {
        mDescription = description;
    }

    @OneToMany(cascade={CascadeType.MERGE, CascadeType.REMOVE})
    @JoinColumn(name="quiz_id", referencedColumnName="id")
    public List<Answer> getAnswers() {
        return mAnswers;
    }

    public void setAnswers(List<Answer> answers) {
        mAnswers = answers;
    }

    @Column(name="reg_date")
    public Date getRegDate() {
        return mRegDate;
    }

    public void setRegDate(Date regDate) {
        mRegDate = regDate;
    }

    @Override
    public boolean equals(Object obj) {
        return reflectionEquals(this, obj);
    }

    @Override
    public int hashCode() {
        return reflectionHashCode(this);
    }

    @Override
    public String toString() {
        return reflectionToString(this);
    }
}







       package com.next.persistence;

    import java.text.ParseException;
    import java.text.SimpleDateFormat;
    import java.util.Date;
    import java.util.List;
    import java.util.Map;

    import javax.persistence.EntityManager;
    import javax.persistence.NoResultException;
    import javax.persistence.PersistenceContext;
    import javax.persistence.PersistenceContextType;

    import org.springframework.stereotype.Repository;
    import org.springframework.transaction.annotation.Propagation;
    import org.springframework.transaction.annotation.Transactional;

    import com.next.domain.Answer;
    import com.next.domain.Quiz;
    import com.next.domain.QuizSubmission;

    @Repository("quizDao")
    @Transactional(propagation = Propagation.REQUIRED, rollbackFor = Throwable.class)
    public class QuizDaoImpl implements QuizDao {
        private static final String QUIZ_SELECT_CLAUSE = "select new map(q.id as id, q.title as title, q.regDate as regDate)";
        private static final String ANSWER_SELECT_CLAUSE = "select new map(a.id as id, a.content as content)";

        @PersistenceContext(type=PersistenceContextType.EXTENDED)
        private EntityManager em;

        @Override
        public void addQuiz(Quiz quiz) {
            em.persist(quiz);
        }

        @Override
        public void saveQuiz(Quiz quiz) {
            em.merge(quiz);
        }

        @Override
        public void deleteQuiz(long id) {
            try {
                em.remove(getQuiz(id));
            } catch (IllegalArgumentException ie) {
                return;
            }
        }

        @Override
        public Quiz getQuiz(long id) {
            Quiz quiz = null;

            try {
                quiz = em.find(Quiz.class, id);
            } catch (NoResultException e) {}

            return quiz;
        }

        @Override
        public void addAnswer(Answer answer) {
            em.persist(answer);
        }

        @Override
        public void saveAnswer(Answer answer) {
            em.merge(answer);
        }

        @Override
        public void deleteAnswer(long id) {
            try {
                em.remove(getAnswer(id));
            } catch (IllegalArgumentException ie) {
                return;
            }
        }

        @Override
        public Answer getAnswer(long id) {
            Answer answer = null;

            try {
                answer = em.find(Answer.class, id);
            } catch (NoResultException e) {}

            return answer;
        }

        @SuppressWarnings("unchecked")
        @Override
        public List<Map<String, Object>> getAnswers(long quizId) {
            return (List<Map<String, Object>>) em.createQuery(ANSWER_SELECT_CLAUSE + " from Answer a where a.quizId = :quizId")
                    .setParameter("quizId", quizId)
                    .getResultList();
        }

        @SuppressWarnings("unchecked")
        @Override
        public List<Map<String, Object>> getQuizzes(int section) {
            return (List<Map<String, Object>>) em.createQuery(QUIZ_SELECT_CLAUSE + " from Quiz q where q.section = :section order by q.regDate desc")
                    .setParameter("section", section)
                    .getResultList();
        }

        @SuppressWarnings("unchecked")
        @Override
        public List<Map<String, Object>> getQuizzesDetails(int section) {
            return (List<Map<String, Object>>) em.createQuery("select q from Quiz q where q.section = :section order by q.regDate desc")
                    .setParameter("section", section)
                    .getResultList();
        }

        @Override
        public Answer getAnswerByQuizId(long quizId) {
            Answer answer = null;

            try {
                answer = em.find(Answer.class, quizId);
            } catch (NoResultException e) {

            }
            return answer;
        }

        @Override
        public void addQuizSubmission(QuizSubmission quizSubmission) {
            em.persist(quizSubmission);
        }

        @Override
        public void saveQuizSubmission(QuizSubmission quizSubmission) {
            em.merge(quizSubmission);
        }

        @Override
        public void deleteQuizSubmission(long id) {
            try {
                em.remove(getQuiz(id));
            } catch (IllegalArgumentException ie) {
                return;
            }
        }

        @Override
        public QuizSubmission getQuizSubmission(long id) {
            QuizSubmission quizSubmission = null;

            try {
                quizSubmission = em.find(QuizSubmission.class, id);
            } catch (NoResultException e) {}

            return quizSubmission;
        }

        @SuppressWarnings("unchecked")
        @Override
        public List<Map<String, Object>> getQuizSubmissions(long quizId) {
            return (List<Map<String, Object>>) em.createQuery("select qs from QuizSubmission qs where qs.quizId = :quizId order by qs.date desc")
                    .setParameter("quizId", quizId)
                    .getResultList();
        }

        @SuppressWarnings("unchecked")
        @Override
        public List<QuizSubmission> getQuizSubmissions(String date) {
            /*return em.createNativeQuery("SELECT `id`, `quiz_id`, `answer_id`, `date` FROM `quizzes_submissions` WHERE DATE(`date`) = :date")
                    .setParameter("date", date )
                    .getResultList();*/

            SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
            Date startDate = null;
            Date endDate = null;
            try {
                startDate = format.parse(date.trim()+" 00:00:00");
                endDate = format.parse(date.trim()+" 23:59:59");
            } catch (ParseException e) {
                e.printStackTrace();
            }

            return em.createQuery("select qs from QuizSubmission qs WHERE qs.date BETWEEN :startDate AND :endDate")
                    .setParameter("startDate", startDate)
                    .setParameter("endDate", endDate)
                    .getResultList();
        }
    }

My controller calls the getQuizzes(int section) of the QuizDaoImpl so that all the quizzes can be displayed.

My observation :The complete thing works fine with fresh deployment the problem occurs after a period of 6-8 hrs once the database is ideal for a long time

root cause

org.hibernate.TransactionException: Already have an associated managed connection
    org.hibernate.engine.transaction.internal.jdbc.JdbcTransaction.doBegin(JdbcTransaction.java:65)
    org.hibernate.engine.transaction.spi.AbstractTransactionImpl.begin(AbstractTransactionImpl.java:160)
org.hibernate.internal.SessionImpl.beginTransaction(SessionImpl.java:1309)
org.hibernate.ejb.TransactionImpl.begin(TransactionImpl.java:57)
org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.enlistInCurrentTransaction(ExtendedEntityManagerCreator.java:421)
org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.doJoinTransaction(ExtendedEntityManagerCreator.java:398)
org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:356)
sun.proxy.$Proxy150.createQuery(Unknown Source)
com.next.persistence.QuizDaoImpl.getQuizzes(QuizDaoImpl.java:102)
sun.reflect.GeneratedMethodAccessor358.invoke(Unknown Source)
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
java.lang.reflect.Method.invoke(Method.java:601)
org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:318)
org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:183)
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:150)
org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:155)
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172)
org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:110)
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172)
org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:202)
sun.proxy.$Proxy163.getQuizzes(Unknown Source)
com.next.service.QuizServiceImpl.getQuizzes(QuizServiceImpl.java:92)
sun.reflect.GeneratedMethodAccessor357.invoke(Unknown Source)
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
java.lang.reflect.Method.invoke(Method.java:601)
org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:318)
org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:183)
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:150)
org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:110)
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172)
org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:202)
sun.proxy.$Proxy164.getQuizzes(Unknown Source)
com.next.mvc.HomeController.showListPage(HomeController.java:308)
sun.reflect.GeneratedMethodAccessor356.invoke(Unknown Source)
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
java.lang.reflect.Method.invoke(Method.java:601)
org.springframework.web.method.support.InvocableHandlerMethod.invoke(InvocableHandlerMethod.java:213)
org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:126)
org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:96)
org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:617)
org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:578)
org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:80)
org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:923)
org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:852)
org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:882)
org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:778)
javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:77)
org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:76)
org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:311)
org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:116)
org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:83)
org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:323)
org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:113)
org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:323)
org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:101)
org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:323)
org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:113)
org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:323)
org.springframework.security.web.authentication.rememberme.RememberMeAuthenticationFilter.doFilter(RememberMeAuthenticationFilter.java:146)
org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:323)
org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:54)
org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:323)
org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:45)
org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:323)
org.springframework.security.web.authentication.www.BasicAuthenticationFilter.doFilter(BasicAuthenticationFilter.java:150)
org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:323)
org.springframework.security.web.authentication.AbstractAuthenticationProcessingFilter.doFilter(AbstractAuthenticationProcessingFilter.java:182)
org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:323)
org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:105)
org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:323)
org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:87)
org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:323)
org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:173)
org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:259)
解决方案

The problem was in the @PersistenceContext annotation. I had :

@PersistenceContext(type = PersistenceContextType.EXTENDED)
private EntityManager entityManager;

and I replaced it with :

@PersistenceContext
private EntityManager entityManager;

这篇关于已经有一个关联的托管连接错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-03 02:58