HttpSecurity 如何释放 某个接口
1.起因是我正在自己做一个uni-app,同时我后端的微服务也已经搭建起来了,但是微服务感觉体量很大,就先还是用的是单体springboot
准备开发一个api接口(实际上已经在业务中写了很多api接口),但是这个接口要是对外的,使得可以跨域访问
首先是HttpSecurity,要能保证接口url从系统外部能访问:
@Override protected void configure(HttpSecurity httpSecurity) throws Exception { httpSecurity.authorizeRequests().antMatchers("/api/**").permitAll(); //其他代码没贴 }