├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── pom.xml └── src └── main ├── java └── com │ └── flyer │ └── maker │ ├── App.java │ ├── base │ ├── Clazz.java │ ├── Config.java │ ├── ConfigSupport.java │ └── Field.java │ ├── freemarker │ ├── FreemarkerConfig.java │ └── templete │ │ ├── ArithUtil.ftl │ │ ├── ArithUtilTest.ftl │ │ ├── BaseController.ftl │ │ ├── BaseResponse.ftl │ │ ├── BeanFactoryRegister.ftl │ │ ├── BeanFactoryRegisterTest.ftl │ │ ├── BizException.ftl │ │ ├── CommonController.ftl │ │ ├── CommonControllerTest.ftl │ │ ├── ControllerInterceptor.ftl │ │ ├── DBUtils.ftl │ │ ├── DateUtil.ftl │ │ ├── ErrorEnum.ftl │ │ ├── GlobalExceptionHandler.ftl │ │ ├── HttpLog.ftl │ │ ├── HttpLogHolder.ftl │ │ ├── LogResponseBodyAdvice.ftl │ │ ├── LogbackProfileListener.ftl │ │ ├── db │ │ ├── controllerTemplate.ftl │ │ ├── controllerTestTemplate.ftl │ │ ├── daoTemplate.ftl │ │ ├── daoTestTemplate.ftl │ │ ├── dataTemplate.ftl │ │ ├── entityTemplate.ftl │ │ ├── mapperTemplate.ftl │ │ ├── saveOrUpdateReqTemplate.ftl │ │ ├── serviceImplTemplate.ftl │ │ └── serviceTemplate.ftl │ │ ├── gitIgnore.ftl │ │ ├── gitkeep.ftl │ │ ├── springboot-rest │ │ ├── AbstractMVCTest.ftl │ │ ├── AbstractTest.ftl │ │ ├── App.java.ftl │ │ ├── WebMvcConfig.ftl │ │ ├── application-dev.properties.ftl │ │ ├── application-prod.properties.ftl │ │ ├── application-stage.properties.ftl │ │ ├── application-test.properties.ftl │ │ ├── application.properties.ftl │ │ ├── logback-spring.ftl │ │ ├── logback-test.ftl │ │ ├── pom.ftl │ │ ├── serviceImplTestTemplate.ftl │ │ └── unit_application.properties.ftl │ │ └── springmvc-rest │ │ ├── AbstractMVCTest.ftl │ │ ├── AbstractTest.ftl │ │ ├── dev_config.properties.ftl │ │ ├── dev_logback.ftl │ │ ├── logback-test.ftl │ │ ├── pom.ftl │ │ ├── prod_config.properties.ftl │ │ ├── prod_logback.ftl │ │ ├── serviceImplTestTemplate.ftl │ │ ├── spring-bootstrap.ftl │ │ ├── spring-core.ftl │ │ ├── spring-dao.ftl │ │ ├── spring-profile.ftl │ │ ├── spring-servlet.ftl │ │ ├── stage_config.properties.ftl │ │ ├── stage_logback.ftl │ │ ├── test_config.properties.ftl │ │ ├── test_logback.ftl │ │ ├── unit_config.properties.ftl │ │ └── webxml.ftl │ ├── generator │ ├── Generator.java │ ├── GeneratorFactory.java │ └── impl │ │ ├── BaseGenerator.java │ │ ├── BootPageGenerator.java │ │ ├── BootRestGenerator.java │ │ ├── MvcPageGenerator.java │ │ └── MvcRestGenerator.java │ ├── parser │ ├── Parser.java │ └── impl │ │ └── MySQLParser.java │ └── utils │ ├── DBUtil.java │ ├── FormatUtil.java │ └── GU.java └── resources ├── application.properties └── logback.xml /.gitattributes: -------------------------------------------------------------------------------- 1 | *.ftl linguist-language=java 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/App.java -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/base/Clazz.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/base/Clazz.java -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/base/Config.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/base/Config.java -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/base/ConfigSupport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/base/ConfigSupport.java -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/base/Field.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/base/Field.java -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/FreemarkerConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/FreemarkerConfig.java -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/ArithUtil.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/ArithUtil.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/ArithUtilTest.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/ArithUtilTest.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/BaseController.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/BaseController.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/BaseResponse.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/BaseResponse.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/BeanFactoryRegister.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/BeanFactoryRegister.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/BeanFactoryRegisterTest.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/BeanFactoryRegisterTest.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/BizException.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/BizException.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/CommonController.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/CommonController.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/CommonControllerTest.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/CommonControllerTest.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/ControllerInterceptor.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/ControllerInterceptor.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/DBUtils.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/DBUtils.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/DateUtil.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/DateUtil.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/ErrorEnum.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/ErrorEnum.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/GlobalExceptionHandler.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/GlobalExceptionHandler.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/HttpLog.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/HttpLog.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/HttpLogHolder.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/HttpLogHolder.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/LogResponseBodyAdvice.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/LogResponseBodyAdvice.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/LogbackProfileListener.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/LogbackProfileListener.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/db/controllerTemplate.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/db/controllerTemplate.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/db/controllerTestTemplate.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/db/controllerTestTemplate.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/db/daoTemplate.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/db/daoTemplate.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/db/daoTestTemplate.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/db/daoTestTemplate.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/db/dataTemplate.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/db/dataTemplate.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/db/entityTemplate.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/db/entityTemplate.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/db/mapperTemplate.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/db/mapperTemplate.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/db/saveOrUpdateReqTemplate.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/db/saveOrUpdateReqTemplate.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/db/serviceImplTemplate.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/db/serviceImplTemplate.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/db/serviceTemplate.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/db/serviceTemplate.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/gitIgnore.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/gitIgnore.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/gitkeep.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/springboot-rest/AbstractMVCTest.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/springboot-rest/AbstractMVCTest.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/springboot-rest/AbstractTest.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/springboot-rest/AbstractTest.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/springboot-rest/App.java.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/springboot-rest/App.java.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/springboot-rest/WebMvcConfig.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/springboot-rest/WebMvcConfig.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/springboot-rest/application-dev.properties.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/springboot-rest/application-dev.properties.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/springboot-rest/application-prod.properties.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/springboot-rest/application-prod.properties.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/springboot-rest/application-stage.properties.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/springboot-rest/application-stage.properties.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/springboot-rest/application-test.properties.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/springboot-rest/application-test.properties.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/springboot-rest/application.properties.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/springboot-rest/application.properties.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/springboot-rest/logback-spring.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/springboot-rest/logback-spring.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/springboot-rest/logback-test.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/springboot-rest/logback-test.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/springboot-rest/pom.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/springboot-rest/pom.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/springboot-rest/serviceImplTestTemplate.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/springboot-rest/serviceImplTestTemplate.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/springboot-rest/unit_application.properties.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/springboot-rest/unit_application.properties.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/springmvc-rest/AbstractMVCTest.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/springmvc-rest/AbstractMVCTest.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/springmvc-rest/AbstractTest.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/springmvc-rest/AbstractTest.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/springmvc-rest/dev_config.properties.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/springmvc-rest/dev_config.properties.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/springmvc-rest/dev_logback.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/springmvc-rest/dev_logback.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/springmvc-rest/logback-test.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/springmvc-rest/logback-test.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/springmvc-rest/pom.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/springmvc-rest/pom.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/springmvc-rest/prod_config.properties.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/springmvc-rest/prod_config.properties.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/springmvc-rest/prod_logback.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/springmvc-rest/prod_logback.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/springmvc-rest/serviceImplTestTemplate.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/springmvc-rest/serviceImplTestTemplate.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/springmvc-rest/spring-bootstrap.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/springmvc-rest/spring-bootstrap.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/springmvc-rest/spring-core.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/springmvc-rest/spring-core.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/springmvc-rest/spring-dao.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/springmvc-rest/spring-dao.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/springmvc-rest/spring-profile.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/springmvc-rest/spring-profile.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/springmvc-rest/spring-servlet.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/springmvc-rest/spring-servlet.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/springmvc-rest/stage_config.properties.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/springmvc-rest/stage_config.properties.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/springmvc-rest/stage_logback.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/springmvc-rest/stage_logback.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/springmvc-rest/test_config.properties.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/springmvc-rest/test_config.properties.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/springmvc-rest/test_logback.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/springmvc-rest/test_logback.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/springmvc-rest/unit_config.properties.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/springmvc-rest/unit_config.properties.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/freemarker/templete/springmvc-rest/webxml.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/freemarker/templete/springmvc-rest/webxml.ftl -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/generator/Generator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/generator/Generator.java -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/generator/GeneratorFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/generator/GeneratorFactory.java -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/generator/impl/BaseGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/generator/impl/BaseGenerator.java -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/generator/impl/BootPageGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/generator/impl/BootPageGenerator.java -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/generator/impl/BootRestGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/generator/impl/BootRestGenerator.java -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/generator/impl/MvcPageGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/generator/impl/MvcPageGenerator.java -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/generator/impl/MvcRestGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/generator/impl/MvcRestGenerator.java -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/parser/Parser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/parser/Parser.java -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/parser/impl/MySQLParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/parser/impl/MySQLParser.java -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/utils/DBUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/utils/DBUtil.java -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/utils/FormatUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/utils/FormatUtil.java -------------------------------------------------------------------------------- /src/main/java/com/flyer/maker/utils/GU.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/java/com/flyer/maker/utils/GU.java -------------------------------------------------------------------------------- /src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/resources/application.properties -------------------------------------------------------------------------------- /src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancefantasy/flyer-maker/HEAD/src/main/resources/logback.xml --------------------------------------------------------------------------------