今天报了一个这个错记录一下:(不知道对大家有帮助没有)
Unable to find org.hibernate.search.event.FullTextIndexEventListener on the classpath. Hibernate Search is not enabled.
意思是:在类路径上找不到org.hibernate.search.event.FullTextIndexEventListener。未启用休眠搜索。
于是我就在标签上加了个insert=“false” update="false"
<many-to-one name="users" class="cn.bdqn.pojo.Users" fetch="select" insert="false" update="false">
<column name="`ID`" precision="4" scale="0" />
</many-to-one>
来源:CSDN
作者:苏闻君
链接:https://blog.csdn.net/sublime_k/article/details/104424273