最赞回答 / qq_大布丁_0
1.application.properties中指定 datasource.url spring.datasource.name=miaosha spring.datasource.url=jdbc:mysql://127.0.0.1:3306/miaosha spring.datasource.username=lizhch spring.datasource.password=lizhch2.pom中引入 mysql的驱动
& ...
2019-11-27
最新回答 / qq_大布丁_0
BusinessException extends Exception 为受检查的异常(checked exceptions),其必须被 try{}catch语句块所捕获,或者在方法签名里通过throws子句声明
2019-11-25
最赞回答 / 纸伞遇佳人
Ajax跨域请求问题,设置一下属性就可以了,前端Ajax请求中添加
xhrFields: {withCredentials: true}, 后端controller层添加@CrossOrigin(origins = "*", allowCredentials = "true")就可以访问了
2019-11-21
最新回答 / 慕慕1568843
视频作者,少写了步骤,这块需要你自己添加上。执行userDOmapper.insertSelective(userDO)之后,userDO这个对象的id就有了你需要使用userDO的id,然后再设置给userpasswordDO.userModel里面是没有user id的值的。
2019-11-19
最赞回答 / qq_慕函数4423931
mybatis.mapper-locations=classpath:mapping/UserDOMapper.xml在application.properties中把站长那个配置改成这个,就行了。之前把mapping/*.xml这个语句注释掉,报500There was an unexpected error (type=Internal Server Error,...
2019-11-19