Vert.X
Eclipse Vert.x is a tool-kit for building reactive applications on the JVM.
优点很多,不赘述。
Hello World
创建一个 Java maven 项目。
Project Struct
│pom.xml
│
└─src
├─main
│ ├─java
...
Maven Plugin
Mvn Plugin 对于使用 maven 的人来说并不陌生,我们如何编写自己的插件呢?
Mojo
A mojo is a Maven plain Old Java Object. Each mojo is an executable goal in Maven, and a plugin is a distribution of one or mor...
Javassist
Javassist (Java Programming Assistant) makes Java bytecode manipulation simple.
It is a class library for editing bytecodes in Java; it enables Java programs to define a new class at ru...