Spring MVC 启动失败 Error starting ApplicationContext.

Error starting ApplicationContext. To display the auto-configuration report re-run your application with 'debug' enabled.

百度翻译

启动应用程序上下文时出错。若要显示自动配置报告,请在启用“调试”的情况下重新运行应用程序。

Google

Controller包和Application包处于平行位置

但是实际上Controller包必须在Application包里才能被扫描到,从而正常运行程序,所以只要把Controller包移动到Application包内,错误就没有了

Google上有各式各样的说法,完全蒙,发现一个也用不上

又看了一遍视频教程,发现老师教程上建立班级实体数据表时

 @Id
 @GeneratedValue(strategy = GenerationType.IDENTITY)

是从教师实体中Copy的,而我是自己敲的

引入import包不一致

Spring官方文档

javax.persistence.Id and org.springframework.data.annotation.Id?

猜想:启动应用程序上下文时出错。
上下文:是不是上面的和下面的存在着联系和关联,当上面和下面不一致时,就会出现错误

你可能感兴趣的:(spring-mvc)