├── MyBatisGenerator.iml ├── README.md ├── pom.xml └── src ├── main ├── java │ └── cn │ │ └── hfbin │ │ └── crud │ │ ├── bean │ │ ├── Department.java │ │ ├── DepartmentExample.java │ │ ├── Employee.java │ │ └── EmployeeExample.java │ │ ├── controller │ │ ├── DepartmentController.java │ │ └── EmployeeController.java │ │ ├── dao │ │ ├── DepartmentMapper.java │ │ └── EmployeeMapper.java │ │ ├── dto │ │ └── Msg.java │ │ ├── service │ │ ├── DepartmentService.java │ │ └── EmployeeService.java │ │ └── test │ │ ├── MapperTest.java │ │ └── ServicceTest.java ├── resources │ ├── applicationContext.xml │ ├── dbconfig.properties │ ├── generatorConfig.xml │ ├── mapper │ │ ├── DepartmentMapper.xml │ │ └── EmployeeMapper.xml │ └── mybatis-config.xml └── webapp │ ├── WEB-INF │ ├── dispatcherServlet-servlet.xml │ └── web.xml │ ├── index.jsp │ └── static │ ├── bootstrap-3.3.7-dist │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js │ └── js │ ├── index.js │ └── jquery-1.12.4.min.js └── test └── java └── cn └── hfbin └── crud └── service └── DepartmentServiceTest.java /MyBatisGenerator.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/SSMCrud/HEAD/MyBatisGenerator.iml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/SSMCrud/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/SSMCrud/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/cn/hfbin/crud/bean/Department.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/SSMCrud/HEAD/src/main/java/cn/hfbin/crud/bean/Department.java -------------------------------------------------------------------------------- /src/main/java/cn/hfbin/crud/bean/DepartmentExample.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/SSMCrud/HEAD/src/main/java/cn/hfbin/crud/bean/DepartmentExample.java -------------------------------------------------------------------------------- /src/main/java/cn/hfbin/crud/bean/Employee.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/SSMCrud/HEAD/src/main/java/cn/hfbin/crud/bean/Employee.java -------------------------------------------------------------------------------- /src/main/java/cn/hfbin/crud/bean/EmployeeExample.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/SSMCrud/HEAD/src/main/java/cn/hfbin/crud/bean/EmployeeExample.java -------------------------------------------------------------------------------- /src/main/java/cn/hfbin/crud/controller/DepartmentController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/SSMCrud/HEAD/src/main/java/cn/hfbin/crud/controller/DepartmentController.java -------------------------------------------------------------------------------- /src/main/java/cn/hfbin/crud/controller/EmployeeController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/SSMCrud/HEAD/src/main/java/cn/hfbin/crud/controller/EmployeeController.java -------------------------------------------------------------------------------- /src/main/java/cn/hfbin/crud/dao/DepartmentMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/SSMCrud/HEAD/src/main/java/cn/hfbin/crud/dao/DepartmentMapper.java -------------------------------------------------------------------------------- /src/main/java/cn/hfbin/crud/dao/EmployeeMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/SSMCrud/HEAD/src/main/java/cn/hfbin/crud/dao/EmployeeMapper.java -------------------------------------------------------------------------------- /src/main/java/cn/hfbin/crud/dto/Msg.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/SSMCrud/HEAD/src/main/java/cn/hfbin/crud/dto/Msg.java -------------------------------------------------------------------------------- /src/main/java/cn/hfbin/crud/service/DepartmentService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/SSMCrud/HEAD/src/main/java/cn/hfbin/crud/service/DepartmentService.java -------------------------------------------------------------------------------- /src/main/java/cn/hfbin/crud/service/EmployeeService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/SSMCrud/HEAD/src/main/java/cn/hfbin/crud/service/EmployeeService.java -------------------------------------------------------------------------------- /src/main/java/cn/hfbin/crud/test/MapperTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/SSMCrud/HEAD/src/main/java/cn/hfbin/crud/test/MapperTest.java -------------------------------------------------------------------------------- /src/main/java/cn/hfbin/crud/test/ServicceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/SSMCrud/HEAD/src/main/java/cn/hfbin/crud/test/ServicceTest.java -------------------------------------------------------------------------------- /src/main/resources/applicationContext.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/SSMCrud/HEAD/src/main/resources/applicationContext.xml -------------------------------------------------------------------------------- /src/main/resources/dbconfig.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/SSMCrud/HEAD/src/main/resources/dbconfig.properties -------------------------------------------------------------------------------- /src/main/resources/generatorConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/SSMCrud/HEAD/src/main/resources/generatorConfig.xml -------------------------------------------------------------------------------- /src/main/resources/mapper/DepartmentMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/SSMCrud/HEAD/src/main/resources/mapper/DepartmentMapper.xml -------------------------------------------------------------------------------- /src/main/resources/mapper/EmployeeMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/SSMCrud/HEAD/src/main/resources/mapper/EmployeeMapper.xml -------------------------------------------------------------------------------- /src/main/resources/mybatis-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/SSMCrud/HEAD/src/main/resources/mybatis-config.xml -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/dispatcherServlet-servlet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/SSMCrud/HEAD/src/main/webapp/WEB-INF/dispatcherServlet-servlet.xml -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/SSMCrud/HEAD/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /src/main/webapp/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/SSMCrud/HEAD/src/main/webapp/index.jsp -------------------------------------------------------------------------------- /src/main/webapp/static/bootstrap-3.3.7-dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/SSMCrud/HEAD/src/main/webapp/static/bootstrap-3.3.7-dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /src/main/webapp/static/bootstrap-3.3.7-dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/SSMCrud/HEAD/src/main/webapp/static/bootstrap-3.3.7-dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /src/main/webapp/static/bootstrap-3.3.7-dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/SSMCrud/HEAD/src/main/webapp/static/bootstrap-3.3.7-dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /src/main/webapp/static/bootstrap-3.3.7-dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/SSMCrud/HEAD/src/main/webapp/static/bootstrap-3.3.7-dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /src/main/webapp/static/bootstrap-3.3.7-dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/SSMCrud/HEAD/src/main/webapp/static/bootstrap-3.3.7-dist/css/bootstrap.css -------------------------------------------------------------------------------- /src/main/webapp/static/bootstrap-3.3.7-dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/SSMCrud/HEAD/src/main/webapp/static/bootstrap-3.3.7-dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /src/main/webapp/static/bootstrap-3.3.7-dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/SSMCrud/HEAD/src/main/webapp/static/bootstrap-3.3.7-dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/main/webapp/static/bootstrap-3.3.7-dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/SSMCrud/HEAD/src/main/webapp/static/bootstrap-3.3.7-dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /src/main/webapp/static/bootstrap-3.3.7-dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/SSMCrud/HEAD/src/main/webapp/static/bootstrap-3.3.7-dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/main/webapp/static/bootstrap-3.3.7-dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/SSMCrud/HEAD/src/main/webapp/static/bootstrap-3.3.7-dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /src/main/webapp/static/bootstrap-3.3.7-dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/SSMCrud/HEAD/src/main/webapp/static/bootstrap-3.3.7-dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/main/webapp/static/bootstrap-3.3.7-dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/SSMCrud/HEAD/src/main/webapp/static/bootstrap-3.3.7-dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/main/webapp/static/bootstrap-3.3.7-dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/SSMCrud/HEAD/src/main/webapp/static/bootstrap-3.3.7-dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /src/main/webapp/static/bootstrap-3.3.7-dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/SSMCrud/HEAD/src/main/webapp/static/bootstrap-3.3.7-dist/js/bootstrap.js -------------------------------------------------------------------------------- /src/main/webapp/static/bootstrap-3.3.7-dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/SSMCrud/HEAD/src/main/webapp/static/bootstrap-3.3.7-dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /src/main/webapp/static/bootstrap-3.3.7-dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/SSMCrud/HEAD/src/main/webapp/static/bootstrap-3.3.7-dist/js/npm.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/SSMCrud/HEAD/src/main/webapp/static/js/index.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/jquery-1.12.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/SSMCrud/HEAD/src/main/webapp/static/js/jquery-1.12.4.min.js -------------------------------------------------------------------------------- /src/test/java/cn/hfbin/crud/service/DepartmentServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfbin/SSMCrud/HEAD/src/test/java/cn/hfbin/crud/service/DepartmentServiceTest.java --------------------------------------------------------------------------------