我正在使用Eclipse内置格式化程序。 我们说我有以下方法:
protected void configure(HttpSecurity http) throws Exception {
http
.authorizeRequests()
.antMatchers("/", "/home").authenticated()
.anyRequest().authenticated()
.and()
.formLogin()
.loginPage("/login")
.permitAll()
.and()
.logout()
.logoutSuccessUrl("/login?logout")
.permitAll();
}
当我尝试格式化我的课程(Ctrl + Shift + F)时,它会变成这样:
protected void configure(HttpSecurity http) throws Exception {
http.authorizeRequests().antMatchers("/", "/home").authenticated().anyRequest().authenticated().and()
.formLogin().loginPage("/login").permitAll().and().logout().logoutSuccessUrl("/login?logout")
.permitAll();
}
如何保留原来的格式化方法调用中包的方式,并且仍然可以格式化代码的其他部分?