业精于勤,荒于嬉;行成于思,毁于随。
This is the result of idea decompiling .class. If you want to see the complete source code, you can use maven-source-plugin and configure it in pom.xml:
maven-source-plugin
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin>
Then:
mvn clean package
You will see in the target directory:
xx.jar
xx-sources.jar
sources.jar is the readable source code jar
This is the result of idea decompiling .class. If you want to see the complete source code, you can use
maven-source-plugin
and configure it in pom.xml:Then:
You will see in the target directory:
xx.jar
xx-sources.jar
sources.jar is the readable source code jar