Spring Boot在controller层加个跨域
程序员文章站
2022-03-30 22:31:27
...
在controller头部加个@CrossOrigin注解搞定。
@GetMapping
@CrossOrigin(allowCredentials = "true",allowedHeaders = "*")
public PageVO<TestVO> findVenueList(@PageableDefault(size = 5) Pageable pageable){
return venueService.findTestList(pageable);
}
下一篇: 条纹进度条