我可以使用RemoteSpringApplication在编辑时重新加载应用程序,直到我为我的应用程序添加弹簧安全性,
和
@EnableWebSecurity
public class WebAuthConfig extends WebSecurityConfigurerAdapter { ..
ETC
虽然我添加了事件:
// TODO: this disable all security checks httpSecurity.httpBasic().disable().authorizeRequests().anyRequest().permitAll();
所以我所有的休息电话仍然可以在没有任何身份验证的情况下工作,
一旦我更改代码并运行 RemoteSpringApplication 检测到它失败的更改:
Exception in thread "File Watcher" java.lang.IllegalStateException: Unexpected 403 response uploading class files
如何预防?
谢谢