Mybatis Generator UI is based on Mybatis Gennerator. It provides a web tool to generate code.
- Clone the project if you haven't yet.
git clone https://github.com/lishuo9527/MybatisGenerator-UI.git
- Build the project with the code
cd MybatisGenerator-UI
mvn clean package -Dmaven.test.skip
- Change default server port from application.properties file if you want.
### Default server port #########
server.port=8888
- Run it from the command line with a command like this:
cd target/
nohup java -server -Xms128m -Xmx128m -jar MybatisGenerator-1.0.0-SNAPSHOT.jar >out.log 2>&1 &
-
you can also run it in Eclipes or IntelliJ IDEA. Just find class
MybatisGeneratorApplication
and run it. -
Access server as
http://localhost:8888
- Support more databases( Now only support MySQL)
- Optimize code
Add system configuration(Done)
Mybatis Generator UI is released under the MIT License.