已采纳回答 / 不是杯具的悲剧
pom没有配置你的plugin吧,在你的pom.xml中把build换成这个试一下<build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> <plugin> &...
2019-04-22
最新回答 / qq_慕的地8362568
BusinessException:null 这个只不过是一个封装的异常信息。因为 public class BusinessException extends Exception :这说明了你的查询是没有错的,只不过是数据库没有对应的数据报了一个这样的错误【java.lang.NullPointerException: null】空指针异常。if (ex instanceof BusinessException) {BusinessException businessException = (Busin...
2019-04-21
最新回答 / AbstractMonments
//用户注册 UserModel userModel = new UserModel(); ... userModel.setGender(gender); //使用 userModel.setGender(new Byte(String.valueOf(gender.intValue())));传递null时会报错 userModel.setAge(age); ...
2019-04-21
最新回答 / 搬砖的阿迪
$.ajax({type:"POST",contentType:"application/x-www-form-urlencoded",url:"http://localhost:8090/user/login",data:{"telphone":$("#telphone").val(),"password":password,},xhrFields: {withCredentials: true},前端页面加上 xhrFields: {withCredentials: true},
2019-04-19