如何在方法调用后设置eclipse忽略新行?

时间:2016-10-07 15:27:09

标签: java eclipse formatter

我正在使用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();
}

如何保留原来的格式化方法调用中包的方式,并且仍然可以格式化代码的其他部分?

0 个答案:

没有答案