README.md 4.1 KB
Newer Older
S
ad  
SeanCai 已提交
1 2
![](https://gw.alicdn.com/tfscom/TB1fb3nlYsTMeJjy1zbXXchlVXa.png)

S
ad  
SeanCai 已提交
3
 2017年10月14日杭州云栖大会,Java代码规约扫描插件全球首发仪式正式启动,规范正式以插件形式公开走向业界,引领Java语言的规范之路。目前,插件已在[云效公有云产品](https://www.aliyun.com/product/yunxiao)中集成,[立即体验](https://rdc-test.aliyun.com)!(云效>公有云>设置->测试服务->阿里巴巴Java代码规约)。
F
fulwonder88 已提交
4

骏烈 已提交
5
# P3C
F
fulwonder88 已提交
6

骏烈 已提交
7
[![License](https://img.shields.io/badge/license-Apache%202-4EB1BA.svg)](https://www.apache.org/licenses/LICENSE-2.0.html)
F
fulwonder88 已提交
8

骏烈 已提交
9
## <font color="green">Preface</font>
J
James Poulakos 已提交
10
> We are pleased to present Alibaba Java Coding Guidelines which consolidates the best programming practices over the years from Alibaba Group's technical teams. A vast number of Java programming teams impose demanding requirements on code quality across projects as we encourage reuse and better understanding of each other's programs. We have seen many programming problems in the past. For example, defective database table structures and index designs may cause software architecture flaws and performance risks. Another example is confusing code structures being difficult to maintain. Furthermore, vulnerable code without authentication is prone to hackers’ attacks. To address these kinds of problems, we developed this document for Java developers at Alibaba.
骏烈 已提交
11 12
 
For more information please refer the *Alibaba Java Coding Guidelines*:
13
- 中文版: *[阿里巴巴Java开发手册](https://github.com/alibaba/p3c/blob/master/%E9%98%BF%E9%87%8C%E5%B7%B4%E5%B7%B4Java%E5%BC%80%E5%8F%91%E6%89%8B%E5%86%8C%EF%BC%88%E8%AF%A6%E5%B0%BD%E7%89%88%EF%BC%89.pdf)*
骏烈 已提交
14
- English Version: *[Alibaba Java Coding Guidelines](https://alibaba.github.io/Alibaba-Java-Coding-Guidelines)*
Y
yangguanbao 已提交
15
- 手册书籍版天猫官方店: *[阿里巴巴JAVA开发手册最新版](https://detail.tmall.com/item.htm?spm=a1z2e.8325951.feedDetail.4.3315431gklIXe&id=562626792765&ns=1&abbucket=14)*
F
fulwonder88 已提交
16

骏烈 已提交
17 18 19 20 21
## <font color="green">Introduction</font>
The project consists of 3 parts:  
- [PMD implementations](p3c-pmd)  
- [IntelliJ IDEA plugin](idea-plugin)  
- [Eclipse plugin](eclipse-plugin)   
F
fulwonder88 已提交
22

骏烈 已提交
23
## <font color="green">Rules</font>
J
James Poulakos 已提交
24
<font color="blue">Forty-nine rules are realized based on PMD, please refer the P3C-PMD documentation for more detailed information. Four rules are implemented within IDE plugins (IDEA and Eclipse) as follows:</font>  
F
fulwonder88 已提交
25

骏烈 已提交
26 27 28 29 30 31 32 33 34 35 36 37
- ``[Mandatory]`` Using a deprecated class or method is prohibited.  
   Note: For example, decode(String source, String encode) should be used instead of the deprecated method decode(String encodeStr). Once an interface has been deprecated, the interface provider has the obligation to provide a new one. At the same time, client programmers have the obligation to check out what its new implementation is.
   
- ``[Mandatory]`` An overridden method from an interface or abstract class must be marked with @Override annotation.
   Counter example: For getObject() and get0bject(), the first one has a letter 'O', and the second one has a number '0'. To accurately determine whether the overriding is successful, an @Override annotation is necessary. Meanwhile, once the method signature in the abstract class is changed, the implementation class will report a compile-time error immediately.
   
- ``[Mandatory]`` A static field or method should be directly referred by its class name instead of its corresponding object name.

- ``[Mandatory]`` The usage of hashCode and equals should follow:
    1. Override hashCode if equals is overridden.
    2. These two methods must be overridden for Set since they are used to ensure that no duplicate object will be inserted in Set.
    3. These two methods must be overridden if self-defined object is used as the key of Map.
S
ad  
SeanCai 已提交
38
   Note: String can be used as the key of Map since these two methods have been rewritten.
S
join us  
SeanCai 已提交
39 40

## Join us
B
Binbin Qian 已提交
41
If you have any questions or comments, please contact junlie by email at caikang.ck@alibaba-inc.com, and please join us to make project P3C perfect for more programmers.
S
join us  
SeanCai 已提交
42

B
Binbin Qian 已提交
43
Please follow our WeChat official account as ali_yunxiao below:
S
join us  
SeanCai 已提交
44 45

![](https://gw.alicdn.com/tfscom/TB1TrNcXjv85uJjSZFNXXcJApXa.png)