遇到的问题和解决方法
maven安装依赖卡死
重启等方法无效。
解决办法
修改maven Importing的jvm参数, 默认为700多, 直接修改成 -Xms1024m -Xmx2048m
后端启动后,访问前端出现数据库字段无法识别错误
数据库和前后端代码无错,重新安装依赖无效,所用的代码版本正确。
解决办法
在Spring 配置文件中@profiles.active@出错,无法正确识别为dev环境,将其直接改为dev。
举例,修改前:
spring:# 环境 dev|test|prodprofiles:active: @profiles.active@# jackson时间格式化jackson:time-zone: GMT+8date-format: yyyy-MM-dd HH:mm:ssservlet:multipart:max-file-size: 2MBmax-request-size: 2MBenabled: truemvc:throw-exception-if-no-handler-found: true
修改后:
spring:# 环境 dev|test|prodprofiles:active: dev# jackson时间格式化jackson:time-zone: GMT+8date-format: yyyy-MM-dd HH:mm:ssservlet:multipart:max-file-size: 2MBmax-request-size: 2MBenabled: truemvc:throw-exception-if-no-handler-found: true