...
Caused by: org.hibernate.DuplicateMappingException: Duplicate class/entity mapping T
...
解决方法:
hibernate.cfg.xml 中session-factory ,配置了
<mapping resource="T.hbm.xml" />
此项和applicationContext.xml 中 sessionFactory 的
<property name="mappingResources">
<list>
<value>T.hbm.xml</value>
</list>
</property>
冲突, 把hibernate.cfg.xml 中 的<mapping resource=""/> 注销即可