# asmsupport **Repository Path**: testphpl/asmsupport ## Basic Information - **Project Name**: asmsupport - **Description**: 当使用ASM编写的时候 很多情况下需要了解JVM底层的指令的, 并且需要对栈和本地变量显式的进行操作, 如果直接用ASM进行开发势必会付出更多的学习成本和时间成本,并且不易后期的维护。 此框架正好缓解了上述问题。使程序员编写字节码的时候更易于理解和开发,屏蔽了JVM指令以及栈和本地变量的操作,开发的时候更趋近于直接编写java程序。【企鹅讨论组:222545685】 - **Primary Language**: Unknown - **License**: LGPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 48 - **Created**: 2015-03-30 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ASMSupport === A java class byte code operate framework --- The asmsupport is a java class byte code operate library, it make easier to write or modify a class at runtime. This framework developed base on [asm](http://asm.ow2.org/) framework, but different from asm that avoid use original jvm instruction and avoid maintain stack and local variables. ## Folder introduction asmsupport |-src/main/java |-java : Maven standard source |-.../asmsupport |-standard : The asmsupport api |-client : The dummy api |-core : The asmsupport core implements |-resource : Maven standard source resources |-src/test |-java : Maven standard test |-resource : Maven standard test resources |-src/third/java : The third-part source code(as source) |-src/issue/java : The fixed bug test code(as test) |-src/sample/java : The old api example code(as test) |-src/dummy/java : The dummy api example code(as test) |-src/site : The project document site folder. Preceding is all of the sources folder structure and descriptions, if you want import the project to eclipse, you must be use ["src/third/java", "src/issue/java", "src/sample/java", "src/dummy/java "] as source folder. ## Maven Dependency cn.wensiqun asmsupport x.x.x ## License Asmsupport is licensed under the GNU Lesser General Public License (LGPL)