我得到了这个例外:
javax.el.ELException: Error reading 'id' on type com.example.model.Article_$$_javassist_2
...
org.hibernate.LazyInitializationException: could not initialize proxy - no Session
org.hibernate.proxy.AbstractLazyInitializer.initialize(AbstractLazyInitializer.java:149)
org.hibernate.proxy.AbstractLazyInitializer.getImplementation(AbstractLazyInitializer.java:195)
org.hibernate.proxy.pojo.javassist.JavassistLazyInitializer.invoke(JavassistLazyInitializer.java:185)
com.example.model.Article_$$_javassist_2.getId(Article_$$_javassist_2.java)
...
这是我的代码:
@Entity
@Table( name = "tbl_articles" )
public class Article implements Comparable<Article>, Serializable
{
private static final long serialVersionUID = 1L;
@Id
@Column( nullable = false )
@GeneratedValue( strategy = GenerationType.IDENTITY )
private Integer id;
// some other fields
@ManyToMany( cascade = { CascadeType.ALL } )
@JoinTable( name = "tbl_articles_categories",
joinColumns = { @JoinColumn( name = "article_id" ) },
inverseJoinColumns = { @JoinColumn( name = "category_id" ) })
@ForeignKey( name = "tbl_articles_categories_fkey_article",
inverseName = "tbl_articles_categories_fkey_category" )
private Set<Category> categories = new HashSet<Category>();
@ManyToMany( cascade = { CascadeType.ALL } )
@JoinTable( name = "tbl_articles_tags",
joinColumns = { @JoinColumn( name = "article_id" ) },
inverseJoinColumns = { @JoinColumn( name = "tag_id" ) })
@ForeignKey( name = "tbl_articles_tags_fkey_article",
inverseName = "tbl_articles_tags_fkey_tag" )
private Set<Tag> tags = new HashSet<Tag>();
// getters and setters
}
public abstract class BaseService<E, D extends BaseDAO<E>>
{
protected D dao;
public BaseService()
{
}
protected D getDao()
{
return dao;
}
@Autowired
protected void setDAO( D dao )
{
this.dao = dao;
}
@Transactional
public E get( int id )
{
return dao.get( id );
}
}
@Service
public class ArticleService extends BaseService<Article, ArticleDAO>
{
public ArticleService()
{
setDAO( dao );
}
}
public abstract class BaseDAO<E>
{
public abstract E get( int id );
}
@Repository
public class ArticleDAO extends BaseDAO<Article>
{
@Autowired
private SessionFactory sessionFactory;
@Override
public Article get( int id )
{
return ( Article ) sessionFactory.getCurrentSession().load( Article.class, id );
}
}
现在在我的控制器中,我使用它来获取特定的文章:
@RequestMapping( "/{id}/{title}.html" )
public String article( @PathVariable( "id" ) Integer id, Map<String, Object> map )
{
map.put( "article", articleService.get( id ) );
return "article";
}
我在我的 JSP 中使用的是这样的:
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
<%@ taglib prefix="slg" uri="http://github.com/slugify" %>
<article>
<c:url value="/blog/${article.id}/${slg:slugify(article.title)}.html" var="articleUrl" />
<h2><a href="${articleUrl}">${article.title}</a></h2>
<span><fmt:formatDate value="${article.creationDate}" pattern="E, dd MMM yyyy" /></span>
<p>
${article.text}
</p>
</article>
这也是我的休眠配置:
# Properties file with Hibernate Settings.
#-------------------------------------------------------------------------------
# Common Settings
hibernate.generate_statistics=false
#hibernate.hbm2ddl.auto=update
hibernate.show_sql=false
#-------------------------------------------------------------------------------
# DB specific Settings
# Property that determines which Hibernate dialect to use
hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect
我做错了什么?
更新
调试sessionFactory.getCurrentSession()
结果:
DEBUG : com.example.model.ArticleDAO - SessionImpl(PersistenceContext[entityKeys=[],collectionKeys=[]];ActionQueue[insertions=[] updates=[] deletions=[] collectionCreations=[] collectionRemovals=[] collectionUpdates=[] unresolvedInsertDependencies=UnresolvedEntityInsertActions[]])
我正在添加一些全局变量,也许这会导致错误?在我的控制器中有一个方法:
@ModelAttribute
public void addGlobalObjects( Map<String, Object> map )
{
map.put( "section", "blog" );
SortedMap<Category, Integer> categories = new TreeMap<Category, Integer>();
for ( Category category : categoryService.list() )
{
categories.put( category, articleService.size( category ) );
}
Calendar cal = Calendar.getInstance();
cal.set( Calendar.DAY_OF_MONTH, 1 );
cal.add( Calendar.MONTH, ARCHIVE_MONTHS * -1 );
SortedMap<Date, Integer> archive = new TreeMap<Date, Integer>();
for ( int i = 0; i < ARCHIVE_MONTHS; ++i )
{
cal.add( Calendar.MONTH, 1 );
archive.put( cal.getTime(), articleService.size( cal ) );
}
SortedMap<Tag, Integer> tags = new TreeMap<Tag, Integer>();
for ( Tag tag : tagService.list() )
{
tags.put( tag, articleService.size( tag ) );
}
map.put( "categories", categories );
map.put( "archive", archive );
map.put( "tags", tags );
map.put( "categoriesSize", categoryService.size() );
map.put( "tagsSize", tagService.size() );
map.put( "date", new Date() );
}
有关更新的文章实体,请参见上文。
更新2
急切的获取并没有解决问题 - 仍然是同样的例外:
@ManyToMany( fetch = FetchType.EAGER, cascade = { CascadeType.ALL } )
最后我得到了我不需要的重复文章......
更新3
尝试Hibernate.initialize()
我得到这个例外:
org.springframework.web.util.NestedServletException: Request processing failed; nested exception is org.hibernate.LazyInitializationException: could not initialize proxy - no Session
更新4
我这样改变了我的get方法:
@Override
public Article get( int id )
{
// return ( Article ) sessionFactory.getCurrentSession().load( Article.class, id );
return ( Article ) sessionFactory.getCurrentSession().createCriteria( Article.class ).add( Restrictions.eq( "id", id ) ).uniqueResult();
}
这不是一个解决方案,但由于我无法处理这个问题,我将暂时使用它。
我已经尝试过这个(如此处所述)但没有成功(它将 ELException 从更改Error reading 'id' on type ...
为Error reading 'title' on type ...
- 也许我用错了?):
@Override
public Article get( int id )
{
Article ret = ( Article ) sessionFactory.getCurrentSession().load( Article.class, id );
sessionFactory.getCurrentSession().update( ret );
return ret;
}
仍然需要一个解决方案!