HttpSecurity 如何释放 某个接口

1.起因是我正在自己做一个uni-app,同时我后端的微服务也已经搭建起来了,但是微服务感觉体量很大,就先还是用的是单体springboot

准备开发一个api接口(实际上已经在业务中写了很多api接口),但是这个接口要是对外的,使得可以跨域访问

首先是HttpSecurity,要能保证接口url从系统外部能访问:

    @Override
    protected void configure(HttpSecurity httpSecurity) throws Exception
    {
        httpSecurity.authorizeRequests().antMatchers("/api/**").permitAll();
    
      //其他代码没贴  
    }

 

posted @ 2022-05-16 13:48  佩洛君  阅读(244)  评论(0编辑  收藏  举报