springboot问答网站项目遇到的bug以及解决方案

1.spring boot 项目报错 java.sql.SQLException: The server time zone value '�й���׼ʱ��' is unrecognized
问题原因:时区不对
解决:参考https://blog.csdn.net/qq_43371004/article/details/98385445
在application.properties中的url后面加上&serverTimezone=Asia/Shanghai

2.@Autowired报错: Could not autowire No beans of 'UserDAO' type found more
解决:虽然编译有红色波浪线但是不影响运行
@Autowired(required = false)在后面加上required
UserDao userDao;

3.Spring boot 默认端口是8080,如果想要进行更改的话,只需要修改applicatoin.properties文件,在配置文件中加入:server.port=9090

你可能感兴趣的:(springboot问答网站项目遇到的bug以及解决方案)