已采纳回答 / 慕粉_小良nice
我遇上过,解决办法一:@CrossOrigin(allowCredentials = "true", allowedHeaders = "*")解决办法二:Controller层的注解改为这样:@RestController@RequestMapping("/xx")@CrossOrigin(allowCredentials = "true", allowedHeaders = "*")
2019-04-24
已采纳回答 / 陈闽不会算法复杂度
我也遇到了这个问题,首先是创建订单的时候itemstock和item没有对应上。在ItemDOMapper中我们使用到了insertSelective的方法来插入一个新的记录,但是这个记录的主键并没有返回到ItemServiceImpl中getlist地...
2019-04-23
已采纳回答 / zelinhehe
检查:application.properties中的
spring.datasource.name=miaosha spring.datasource.url=jdbc:mysql://127.0.0.1:3306/miaosha?characterEncoding=utf-8&useSSL=false spring.datasource.username=root spring.datasource.password=root
2019-04-23
已采纳回答 / 不是杯具的悲剧
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