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.
我正在使用多个sessionfactory主/从数据库连接。 顺便说一句,是否可以通过一些自定义注释来确定我在控制器级别使用的 sessionfactory?
sessionfactory
@Qualifier在注射时使用SessionFactory以描述您要使用哪一个。@Repository基于 setter 的DAO注入示例:
@Qualifier
SessionFactory
@Repository
protected SessionFactory sessionFactory; @Autowired @Qualifier("masterSessionFactory") public void setSessionFactory(SessionFactory sessionFactory) { this.sessionFactory = sessionFactory; }