服务器之家

服务器之家 > 正文

Eclipse代码格式化设置简单介绍

时间:2021-01-25 11:46     来源/作者:y151706928

自用项目中统一Eclipse格式化Java、JavaScript、JSP、HTML代码设置

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
1.Window->Preferences
//Java 格式化
2.Java->Code Style->Formatter->New->Edit->Line Wrapping
3.Maximum Line width = 180
4.Set line width for preview window = 180
//JavaScript 格式化
5.JavaScript->Code Style->Formatter->New->Edit->Line Wrapping
6.Maximum Line width = 180
7.Set line width for preview window = 180
8.Tab标签页->Comments
9.Maximum line width for comments = 180
//JSP|HTML页面 格式化
10.Web->HTML Files->Editor
Line width = 180
Inline Elements 选中所有-> Remove

格式化前:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<script>
    $("#loginBtn")
        .click(
            function() {
              $
                  .ajax({
                    url : "/Test/userInfo/login",
                    type : 'POST',
                    dataType : 'json',
                    data : {
                      userAccount : $("#userAccount")
                          .val(),
                      password : $("#password").val()
                    },
                    success : function(data, textStatus,
                        xhr) {
 
                      window.location.href = "/Test/userInfo/userlogin";
                    },
                    error : function(xhr, textStatus,
                        errorThrown) {
                      //alert("登录异常请重新登录")
                      $.messager.show({
                        title : '提示',
                        msg : '登录异常请重新登录',
                      });
 
                    },
                    complete : function() {
                      // $yr.closeMask();
                    }
                  });
 
            });
</script>

格式化后:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<script>
    $("#loginBtn").click(function() {
      $.ajax({
        url : "/Test/userInfo/login",
        type : 'POST',
        dataType : 'json',
        data : {
          userAccount : $("#userAccount").val(),
          password : $("#password").val()
        },
        success : function(data, textStatus, xhr) {
 
          window.location.href = "/Test/userInfo/userlogin";
        },
        error : function(xhr, textStatus, errorThrown) {
          //alert("登录异常请重新登录")
          $.messager.show({
            title : '提示',
            msg : '登录异常请重新登录',
          });
 
        },
        complete : function() {
          // $yr.closeMask();
        }
      });
 
    });
</script>

总结

以上就是本文关于Eclipse代码格式化设置简单介绍的全部内容,希望对大家有所帮助。如有不足之处,欢迎留言参考。感谢朋友们对本站的支持!

原文链接:http://blog.csdn.net/y151706928/article/details/52884562

相关文章

热门资讯

2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
Intellij idea2020永久破解,亲测可用!!!
Intellij idea2020永久破解,亲测可用!!! 2020-07-29
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总 2020-11-13
歪歪漫画vip账号共享2020_yy漫画免费账号密码共享
歪歪漫画vip账号共享2020_yy漫画免费账号密码共享 2020-04-07
返回顶部