private SessionFactory se;
public SessionFactory getSe() {
return se;
}
@Autowired
public void setSe(SessionFactory se) {
this.se = se;
}
se.getCurrentSession()
为什么这个getCurrentSession()报错 提示The method getCurrentSession() is undefined for the type SessionFactory
public SessionFactory getSe() {
return se;
}
@Autowired
public void setSe(SessionFactory se) {
this.se = se;
}
se.getCurrentSession()
为什么这个getCurrentSession()报错 提示The method getCurrentSession() is undefined for the type SessionFactory