how to edit `.class` file in Maven dependency in Eclipse

后端 未结 5 892
臣服心动
臣服心动 2021-01-12 16:32

Ok, so I have my Java projects, and under the Maven dependency project folder on the project explorer, I encounter a jar folder, and in it there is a .cla

5条回答
  •  温柔的废话
    2021-01-12 17:01

    As has been previously mentioned, you can't modify .class files. You can download the source java files of the dependencies if available via:

    mvn dependency:sources
    mvn dependency:resolve -Dclassifier=javadoc
    

提交回复
热议问题