测试积点老人 发表于 2022-3-2 13:13:31

springboot+security 测试无返回值

本帖最后由 测试积点老人 于 2022-3-2 13:22 编辑

问题遇到的现象和发生背景springboot+security整合,测试接口的时候无论是不是白名单接口都可以访问成功,状态为200,但是无返回数据,浏览器测试也是一样,求解控制类@Controller
public class TestController {
@GetMapping("/test")
@ResponseBody
public Result test(){
    System.out.println("开始测试");
    return Result.success("成功!","你好");
}
@GetMapping("/test1")
@ResponseBody
public String test1(){
    System.out.println("开始测试");
    return "你好!";
}
配置类@Configuration
@EnableWebSecurity
@EnableGlobalMethodSecurity(prePostEnabled = true)
public class SecurityConfig extends WebSecurityConfigurerAdapter {
@Resource
private JwtAccessDeniedHandler jwtAccessDeniedHandler;

@Resource
private JwtAuthenticationEntryPoint jwtAuthenticationEntryPoint;

@Resource
private JwtAuthenticationFilter jwtAuthenticationFilter;


/**
* 一般用于配置白名单
* 白名单:可以没有权限也可以访问的资源
* @param web
* @throws Exception
*/
@Override
public void configure(WebSecurity web) throws Exception {
    web.ignoring()
            .mvcMatchers("/test");
}
测试结果截图
1、有白名单2、没有白名单3、甚至不存在的路径 -_-||运行结果及报错内容控制台没有打印任何内容,无报错,测试用的是postman

qqq911 发表于 2022-3-3 10:15:19

看下服务器端日志

jingzizx 发表于 2022-3-3 14:04:15

从链路的角度看一下
页: [1]
查看完整版本: springboot+security 测试无返回值