bug1
The server time zone value 'Öйú±ê׼ʱ¼ä' is unrecognized or represents more than one time zone.
连接mysql是返回时区问题,在配置数据库url
的时候一定要加上时区设置。
dataSource.setUrl("jdbc:mysql://localhost:3306/test?characterEncoding=utf8&serverTimezone=GMT%2B8")
bug2
No bean named 'entityManagerFactory' available
这是测试类没写全,书上给的教程没有提供完整的测试类程序清单,缺少了这个方法
public LocalContainerEntityManagerFactoryBean entityManagerFactory()
bug3
image.png在写一个jsp页面的demo时,出现的问题,原因是jsp文件的目录写错了。
但网上有一些常见的问题如下:
- Application只能加载其同包或子包中的内容,所有controller的目录要注意
- 可以在
@SpringBootApplication
后面加上(scanBasePackages)
网友评论