java class file security encryption tool

image

  1. Overview Introduction

Java now has a wide range of applications, but in general, if JAVA class files are not encrypted, it is easy to be anti-edited by some software, which causes the code written so hard to be ruthlessly copied by others. Today introduce an encryption tool to protect your program. ClassFinal is a java class file security encryption tool that supports direct encryption of jar packages or war packages without modifying any project code. It is compatible with spring-framework; it can avoid source code leakage or bytecode decompilation.

Why recommend this framework?

  • No need to modify the original project code, just encrypt the compiled jar/war package with this tool.

  • When running an encrypted project, there is no need to modify the source code of tomcat, spring, etc.

  • Support common jar package, springboot jar package and war package compiled by common java web project.

  • Supports frameworks such as spring framework and swagger that need to scan annotations or generate bytecode during the startup process.

  • Support maven plug-in, after adding the plug-in, it will be automatically encrypted during the packaging process.

  • Support to encrypt dependent jar packages under WEB-INF/lib or BOOT-INF/lib.

  1. Source download

Source download address, just copy and download

https://gitee.com/roseboy/classfinal.git

  1. Scan QR code to follow

image

(the public)

image

(WeChat)

  1. Disclaimer

[ Writing instructions ] The above content is shared with programmers who like to program and have dreams, and hope to help you. The above article belongs to the original public account. If you need to reprint, please indicate the source.

[ Disclaimer ] This public platform is not an advertiser, nor does it advertise for other third-party websites or individuals. The source code and articles shared here are some of the projects that I think are good in the project and study. Some voluntary download or payment behaviors generated by users. Not directly related to the platform

Submission Email[email protected]

 Contributions are welcome to share your high-quality source code or articles


Guess you like

Origin blog.51cto.com/15067267/2576607