1、Exception in thread "main" java.lang.NoClassDefFoundError: javax/persistence/Cacheable
解决:少包:hibernate-release-4.2.3.Final\hibernate-release-4.2.3.Final\lib\required\hibernate-jpa-2.0-api-1.0.1.Final.jar
这种:java.lang.NoClassDefFoundError,一般是少包。
2、Exception in thread "main" org.hibernate.HibernateException: No CurrentSessionContext configured!
解决:在hibernate配置文件中加入<property name="current_session_context_class">thread</property>即可
3、 MySQL error code 150: 外键约束构成不正确(Foreign key constraint is incorrectly formed)根据提示检查references后边的引用列的成分。 references sporter (sporterid) sporter 表没有 sporterid 这列。
4、Spring mvc @ResponseBody jquery ajax调用出现如下错误:406 Not Acceptable
解决:需要加入jackson依赖 jackson-core-asl-1.84.jar、jackson-mapper-asl-1.84.jar
5、Spring Mvc 出现"NetworkError: 400 Bad Request "
解决方法:参数类型和后台不一致!