- 环境的搭建
- jdk1.8
- Maven3.9.2
- Redis5.0
- Navicat16
- Idea
- Ndoejs
- 项目的运行可能遇到的问题
1 若依框架请求访问:/xxxx/xxxxx,认证失败,无法访问系统资源
问题原因:若依框架带有的拦截器,拦截了请求。
解决方案: 在后端的SecurityConfig.java 文件中的protected void configure(HttpSecurity httpSecurity)方法,内添加请求路径,放过下载请求
// 下载路径 允许匿名访问
.antMatchers("/common/download**").anonymous()
.antMatchers("/common/download/resource**").anonymous()
.anonymous() | 使用 anonymous() 所有人都能访问,但是带上 token 访问后会报错 |
.permitAll() | 使用 permitAll() 方法所有人都能访问,包括带上 token 访问 |
2 Maven下载某些包的时候报错无法下载
问题原因:无法连接到本地仓库或本地仓库中该类型的包无法下载
解决方法:切换脱机模式
3 项目导入时记得修改数据库密码