Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经def sessionFactory在我的课堂上定义了class UpdateService.但是sessionFactory总是仍然存在null。(我从控制器和工作中调用服务)
def sessionFactory
class UpdateService.
sessionFactory
null
我需要从该服务中清除 Hibernate 二级查询缓存。可能是什么问题呢?
您是否也在def updateService控制器和工作中使用,或者您正在使用new UpdateService()?您必须使用依赖注入(即def foo)。
def updateService
new UpdateService()
def foo