在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → 一款基于ssm平台的旅游管理系统

一款基于ssm平台的旅游管理系统

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:4.48M
  • 下载次数:39
  • 浏览次数:345
  • 发布时间:2020-10-25
  • 实例类别:一般编程问题
  • 发 布 人:robot666
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
一款基于旅游管理的项目demo 整合mybatis springmvc spring 框架,前端使用的是bootstrap,仅供交流学习
【实例截图】
【核心代码】
ttms-Day10pm-02(1)
├── Day10.txt
├── JAVAPROJECT
│   ├── bin
│   │   ├── debug
│   │   │   └── TestDebug.class
│   │   ├── digest
│   │   │   ├── Base64Demo01.class
│   │   │   ├── MD5Demo01.class
│   │   │   ├── MD5Demo02.class
│   │   │   ├── MD5Demo03.class
│   │   │   └── MD5Demo04.class
│   │   ├── reflect
│   │   │   ├── Autowired.class
│   │   │   ├── Student.class
│   │   │   └── TestReflect01.class
│   │   ├── serial
│   │   │   ├── SerializableDemo01.class
│   │   │   └── Student.class
│   │   └── tlocal
│   │   ├── Circle.class
│   │   ├── CommunicationDemo01$1.class
│   │   ├── CommunicationDemo01.class
│   │   ├── CommunicationDemo02$1.class
│   │   ├── CommunicationDemo02.class
│   │   ├── CommunicationDemo03.class
│   │   ├── DateFormatUtil.class
│   │   ├── HashSetDemo01.class
│   │   ├── MyClass.class
│   │   ├── Point.class
│   │   ├── Rect.class
│   │   ├── Singleton01.class
│   │   ├── Singleton02.class
│   │   ├── Singleton03.class
│   │   ├── Singleton04.class
│   │   ├── Singleton05$Inner.class
│   │   ├── Singleton05.class
│   │   ├── Singleton06.class
│   │   ├── SingletonDemo01$1.class
│   │   ├── SingletonDemo01.class
│   │   ├── ThreadLocalDemo01$1.class
│   │   ├── ThreadLocalDemo01.class
│   │   ├── VolatileDemo01.class
│   │   ├── WorkThread02.class
│   │   ├── WorkThread03.class
│   │   └── WorkThread.class
│   ├── f.txt
│   ├── lib
│   │   └── commons-codec-1.10.jar
│   └── src
│   ├── debug
│   │   └── TestDebug.java
│   ├── digest
│   │   ├── Base64Demo01.java
│   │   ├── MD5Demo01.java
│   │   ├── MD5Demo02.java
│   │   ├── MD5Demo03.java
│   │   └── MD5Demo04.java
│   ├── reflect
│   │   └── TestReflect01.java
│   ├── serial
│   │   └── SerializableDemo01.java
│   └── tlocal
│   ├── CommunicationDemo01.java
│   ├── CommunicationDemo02.java
│   ├── CommunicationDemo03.java
│   ├── HashSetDemo01.java
│   ├── SingletonDemo01.java
│   ├── ThreadLocalDemo01.java
│   └── VolatileDemo01.java
└── ttms1.01
├── logs
│   └── TraceLog.log
├── pom.xml
├── src
│   ├── main
│   │   ├── java
│   │   │   └── cn
│   │   │   └── tedu
│   │   │   └── ttms
│   │   │   ├── attachment
│   │   │   │   ├── controller
│   │   │   │   │   └── AttachmentController.java
│   │   │   │   ├── dao
│   │   │   │   │   ├── AttachmentDao.java
│   │   │   │   │   └── AttchmentMapper.xml
│   │   │   │   ├── entity
│   │   │   │   │   └── Attachment.java
│   │   │   │   └── service
│   │   │   │   ├── AttachmentService.java
│   │   │   │   └── impl
│   │   │   │   └── AttachmentServiceImpl.java
│   │   │   ├── common
│   │   │   │   ├── controller
│   │   │   │   │   └── IndexController.java
│   │   │   │   ├── dao
│   │   │   │   │   └── BaseDao.java
│   │   │   │   ├── exception
│   │   │   │   │   ├── ControllerExceptionHandler.java
│   │   │   │   │   └── ServiceException.java
│   │   │   │   ├── service
│   │   │   │   │   ├── impl
│   │   │   │   │   │   ├── ShiroUserRealm.java
│   │   │   │   │   │   └── SysShiroServiceImpl.java
│   │   │   │   │   └── SysShiroService.java
│   │   │   │   ├── util
│   │   │   │   │   ├── DateFormatUtil.java
│   │   │   │   │   ├── DateUtil.java
│   │   │   │   │   └── StringUtil.java
│   │   │   │   ├── vo
│   │   │   │   │   └── Node.java
│   │   │   │   └── web
│   │   │   │   ├── JsonDateTypeConvert.java
│   │   │   │   ├── JsonResult.java
│   │   │   │   └── PageObject.java
│   │   │   ├── product
│   │   │   │   ├── controller
│   │   │   │   │   ├── ProductTypeController.java
│   │   │   │   │   ├── ProjectController.java
│   │   │   │   │   └── TeamController.java
│   │   │   │   ├── dao
│   │   │   │   │   ├── ProductTypeDao.java
│   │   │   │   │   ├── ProductTypeMapper.xml
│   │   │   │   │   ├── ProjectDao.java
│   │   │   │   │   ├── ProjectMapper.xml
│   │   │   │   │   ├── TeamDao.java
│   │   │   │   │   └── TeamMapper.xml
│   │   │   │   ├── entity
│   │   │   │   │   ├── ProductType.java
│   │   │   │   │   ├── Project.java
│   │   │   │   │   └── Team.java
│   │   │   │   └── service
│   │   │   │   ├── impl
│   │   │   │   │   ├── ProductTypeServiceImpl.java
│   │   │   │   │   ├── ProjectServiceImpl.java
│   │   │   │   │   └── TeamServiceImpl.java
│   │   │   │   ├── ProductTypeService.java
│   │   │   │   ├── ProjectService.java
│   │   │   │   └── TeamService.java
│   │   │   └── system
│   │   │   ├── controller
│   │   │   │   ├── SysLoginController.java
│   │   │   │   ├── SysMenuController.java
│   │   │   │   ├── SysRoleController.java
│   │   │   │   └── SysUserController.java
│   │   │   ├── dao
│   │   │   │   ├── SysMenuDao.java
│   │   │   │   ├── SysRoleDao.java
│   │   │   │   ├── SysRoleMenuDao.java
│   │   │   │   ├── SysUserDao.java
│   │   │   │   └── SysUserRoleDao.java
│   │   │   ├── entity
│   │   │   │   ├── Organization.java
│   │   │   │   ├── SysMenu.java
│   │   │   │   ├── SysRole.java
│   │   │   │   ├── SysRoleMenu.java
│   │   │   │   ├── SysUser.java
│   │   │   │   └── SysUserRole.java
│   │   │   └── service
│   │   │   ├── impl
│   │   │   │   ├── SysMenuServiceImpl.java
│   │   │   │   ├── SysRoleServiceImpl.java
│   │   │   │   └── SysUserServiceImpl.java
│   │   │   ├── SysMenuService.java
│   │   │   ├── SysRoleService.java
│   │   │   └── SysUserService.java
│   │   ├── resources
│   │   │   ├── config.properties
│   │   │   ├── log4j2.xml
│   │   │   ├── mapper
│   │   │   │   └── system
│   │   │   │   ├── SysMenuMapper.xml
│   │   │   │   ├── SysRoleMapper.xml
│   │   │   │   ├── SysRoleMenuMapper.xml
│   │   │   │   ├── SysUserMapper.xml
│   │   │   │   └── SysUserRoleMapper.xml
│   │   │   ├── mybatis-config.xml
│   │   │   ├── spring-mvc.xml
│   │   │   └── spring-mybatis.xml
│   │   └── webapp
│   │   ├── bootstrap
│   │   │   ├── css
│   │   │   │   ├── all-skins.min.css
│   │   │   │   ├── bootstrap-datepicker.min.css
│   │   │   │   ├── bootstrap.min.css
│   │   │   │   ├── bootstrap-responsive.min.css
│   │   │   │   ├── bootstrap-table.min.css
│   │   │   │   ├── font-awesome.min.css
│   │   │   │   └── main.css
│   │   │   ├── fonts
│   │   │   │   ├── FontAwesome.otf
│   │   │   │   ├── fontawesome-webfont.eot
│   │   │   │   ├── fontawesome-webfont.svg
│   │   │   │   ├── fontawesome-webfont.ttf
│   │   │   │   ├── fontawesome-webfont.woff
│   │   │   │   ├── fontawesome-webfont.woff2
│   │   │   │   ├── glyphicons-halflings-regular.eot
│   │   │   │   ├── glyphicons-halflings-regular.svg
│   │   │   │   ├── glyphicons-halflings-regular.ttf
│   │   │   │   ├── glyphicons-halflings-regular.woff
│   │   │   │   └── glyphicons-halflings-regular.woff2
│   │   │   ├── js
│   │   │   │   ├── ajaxupload.js
│   │   │   │   ├── bootstrap-datepicker.min.js
│   │   │   │   ├── bootstrap.min.js
│   │   │   │   ├── bootstrap-table.min.js
│   │   │   │   └── router.js
│   │   │   └── plugins
│   │   │   ├── jqgrid
│   │   │   │   ├── grid.locale-cn.js
│   │   │   │   ├── jquery.jqGrid.min.js
│   │   │   │   ├── ui.jqgrid-bootstrap.css
│   │   │   │   ├── ui.jqgrid-bootstrap-ui.css
│   │   │   │   └── ui.jqgrid.css
│   │   │   ├── layer
│   │   │   │   ├── layer.js
│   │   │   │   ├── mobile
│   │   │   │   │   ├── layer.js
│   │   │   │   │   └── need
│   │   │   │   │   └── layer.css
│   │   │   │   └── skin
│   │   │   │   ├── default
│   │   │   │   │   ├── icon-ext.png
│   │   │   │   │   ├── icon.png
│   │   │   │   │   ├── layer.css
│   │   │   │   │   ├── loading-0.gif
│   │   │   │   │   ├── loading-1.gif
│   │   │   │   │   └── loading-2.gif
│   │   │   │   └── moon
│   │   │   │   ├── default.png
│   │   │   │   └── style.css
│   │   │   ├── treegrid
│   │   │   │   ├── img
│   │   │   │   │   ├── collapse.png
│   │   │   │   │   ├── expand.png
│   │   │   │   │   ├── file.png
│   │   │   │   │   └── folder.png
│   │   │   │   ├── jquery.treegrid.bootstrap3.js
│   │   │   │   ├── jquery.treegrid.css
│   │   │   │   ├── jquery.treegrid.extension.js
│   │   │   │   ├── jquery.treegrid.min.js
│   │   │   │   └── tree.table.js
│   │   │   └── ztree
│   │   │   ├── css
│   │   │   │   ├── awesomeStyle
│   │   │   │   │   ├── awesome.css
│   │   │   │   │   ├── awesome.less
│   │   │   │   │   ├── fa.less
│   │   │   │   │   └── img
│   │   │   │   │   └── loading.gif
│   │   │   │   ├── metroStyle
│   │   │   │   │   ├── img
│   │   │   │   │   │   ├── line_conn.png
│   │   │   │   │   │   ├── loading.gif
│   │   │   │   │   │   ├── metro.gif
│   │   │   │   │   │   └── metro.png
│   │   │   │   │   └── metroStyle.css
│   │   │   │   └── zTreeStyle
│   │   │   │   ├── img
│   │   │   │   │   ├── diy
│   │   │   │   │   │   ├── 1_close.png
│   │   │   │   │   │   ├── 1_open.png
│   │   │   │   │   │   ├── 2.png
│   │   │   │   │   │   ├── 3.png
│   │   │   │   │   │   ├── 4.png
│   │   │   │   │   │   ├── 5.png
│   │   │   │   │   │   ├── 6.png
│   │   │   │   │   │   ├── 7.png
│   │   │   │   │   │   ├── 8.png
│   │   │   │   │   │   └── 9.png
│   │   │   │   │   ├── line_conn.gif
│   │   │   │   │   ├── loading.gif
│   │   │   │   │   ├── zTreeStandard.gif
│   │   │   │   │   └── zTreeStandard.png
│   │   │   │   └── zTreeStyle.css
│   │   │   └── jquery.ztree.all.min.js
│   │   ├── dist
│   │   │   ├── css
│   │   │   │   ├── AdminLTE.css
│   │   │   │   ├── AdminLTE.min.css
│   │   │   │   ├── alt
│   │   │   │   │   ├── AdminLTE-bootstrap-social.css
│   │   │   │   │   ├── AdminLTE-bootstrap-social.min.css
│   │   │   │   │   ├── AdminLTE-fullcalendar.css
│   │   │   │   │   ├── AdminLTE-fullcalendar.min.css
│   │   │   │   │   ├── AdminLTE-select2.css
│   │   │   │   │   ├── AdminLTE-select2.min.css
│   │   │   │   │   ├── AdminLTE-without-plugins.css
│   │   │   │   │   └── AdminLTE-without-plugins.min.css
│   │   │   │   ├── ionicons.min.css
│   │   │   │   └── skins
│   │   │   │   ├── _all-skins.css
│   │   │   │   ├── _all-skins.min.css
│   │   │   │   ├── skin-black.css
│   │   │   │   ├── skin-black-light.css
│   │   │   │   ├── skin-black-light.min.css
│   │   │   │   ├── skin-black.min.css
│   │   │   │   ├── skin-blue.css
│   │   │   │   ├── skin-blue-light.css
│   │   │   │   ├── skin-blue-light.min.css
│   │   │   │   ├── skin-blue.min.css
│   │   │   │   ├── skin-green.css
│   │   │   │   ├── skin-green-light.css
│   │   │   │   ├── skin-green-light.min.css
│   │   │   │   ├── skin-green.min.css
│   │   │   │   ├── skin-purple.css
│   │   │   │   ├── skin-purple-light.css
│   │   │   │   ├── skin-purple-light.min.css
│   │   │   │   ├── skin-purple.min.css
│   │   │   │   ├── skin-red.css
│   │   │   │   ├── skin-red-light.css
│   │   │   │   ├── skin-red-light.min.css
│   │   │   │   ├── skin-red.min.css
│   │   │   │   ├── skin-yellow.css
│   │   │   │   ├── skin-yellow-light.css
│   │   │   │   ├── skin-yellow-light.min.css
│   │   │   │   └── skin-yellow.min.css
│   │   │   ├── img
│   │   │   │   ├── avatar04.png
│   │   │   │   ├── avatar2.png
│   │   │   │   ├── avatar3.png
│   │   │   │   ├── avatar5.png
│   │   │   │   ├── avatar.png
│   │   │   │   ├── boxed-bg.jpg
│   │   │   │   ├── boxed-bg.png
│   │   │   │   ├── credit
│   │   │   │   │   ├── american-express.png
│   │   │   │   │   ├── cirrus.png
│   │   │   │   │   ├── mastercard.png
│   │   │   │   │   ├── mestro.png
│   │   │   │   │   ├── paypal2.png
│   │   │   │   │   ├── paypal.png
│   │   │   │   │   └── visa.png
│   │   │   │   ├── default-50x50.gif
│   │   │   │   ├── icons.png
│   │   │   │   ├── logo.png
│   │   │   │   ├── photo1.png
│   │   │   │   ├── photo2.png
│   │   │   │   ├── photo3.jpg
│   │   │   │   ├── photo4.jpg
│   │   │   │   ├── user1-128x128.jpg
│   │   │   │   ├── user2-160x160.jpg
│   │   │   │   ├── user3-128x128.jpg
│   │   │   │   ├── user4-128x128.jpg
│   │   │   │   ├── user5-128x128.jpg
│   │   │   │   ├── user6-128x128.jpg
│   │   │   │   ├── user7-128x128.jpg
│   │   │   │   └── user8-128x128.jpg
│   │   │   └── js
│   │   │   ├── app.js
│   │   │   ├── app.min.js
│   │   │   ├── demo.js
│   │   │   └── pages
│   │   │   ├── dashboard2.js
│   │   │   └── dashboard.js
│   │   ├── images
│   │   │   ├── logo01.png
│   │   │   └── logo.png
│   │   ├── jquery
│   │   │   ├── jquery-3.2.1.min.js
│   │   │   ├── jquery.form.js
│   │   │   ├── jquery-ui.min.js
│   │   │   └── jquery.validate.min.js
│   │   ├── ttms
│   │   │   ├── attach
│   │   │   │   └── attach.js
│   │   │   ├── common
│   │   │   │   ├── index.js
│   │   │   │   └── page.js
│   │   │   ├── product
│   │   │   │   ├── project_edit.js
│   │   │   │   ├── project_list.js
│   │   │   │   ├── team_edit.js
│   │   │   │   ├── team_list.js
│   │   │   │   ├── type_edit.js
│   │   │   │   └── type_list.js
│   │   │   └── system
│   │   │   ├── menu_edit.js
│   │   │   ├── menu_list.js
│   │   │   ├── organization_edit.js
│   │   │   ├── organization_list.js
│   │   │   ├── role_edit.js
│   │   │   ├── role_list.js
│   │   │   ├── user_edit.js
│   │   │   └── user_list.js
│   │   └── WEB-INF
│   │   ├── pages
│   │   │   ├── attachment
│   │   │   │   └── attachment.jsp
│   │   │   ├── common
│   │   │   │   └── page.jsp
│   │   │   ├── error.jsp
│   │   │   ├── footer.jsp
│   │   │   ├── header.jsp
│   │   │   ├── index.jsp
│   │   │   ├── left.jsp
│   │   │   ├── login.jsp
│   │   │   ├── product
│   │   │   │   ├── project_edit.jsp
│   │   │   │   ├── project_list.jsp
│   │   │   │   ├── team_edit.jsp
│   │   │   │   ├── team_list.jsp
│   │   │   │   ├── type_edit.jsp
│   │   │   │   └── type_list.jsp
│   │   │   └── system
│   │   │   ├── menu_edit.jsp
│   │   │   ├── menu_list.jsp
│   │   │   ├── role_edit.jsp
│   │   │   ├── role_list.jsp
│   │   │   ├── user_edit.jsp
│   │   │   └── user_list.jsp
│   │   └── web.xml
│   └── test
│   └── java
│   └── product
│   └── service
│   ├── TestBase.java
│   ├── TestProjectService.java
│   └── TestTeamService.java
└── target
├── classes
│   ├── cn
│   │   └── tedu
│   │   └── ttms
│   │   ├── attachment
│   │   │   ├── controller
│   │   │   │   └── AttachmentController.class
│   │   │   ├── dao
│   │   │   │   ├── AttachmentDao.class
│   │   │   │   └── AttchmentMapper.xml
│   │   │   ├── entity
│   │   │   │   └── Attachment.class
│   │   │   └── service
│   │   │   ├── AttachmentService.class
│   │   │   └── impl
│   │   │   └── AttachmentServiceImpl.class
│   │   ├── common
│   │   │   ├── controller
│   │   │   │   └── IndexController.class
│   │   │   ├── dao
│   │   │   │   └── BaseDao.class
│   │   │   ├── exception
│   │   │   │   ├── ControllerExceptionHandler.class
│   │   │   │   └── ServiceException.class
│   │   │   ├── service
│   │   │   │   ├── impl
│   │   │   │   │   ├── ShiroUserRealm.class
│   │   │   │   │   └── SysShiroServiceImpl.class
│   │   │   │   └── SysShiroService.class
│   │   │   ├── util
│   │   │   │   ├── DateFormatUtil.class
│   │   │   │   ├── DateUtil.class
│   │   │   │   └── StringUtil.class
│   │   │   ├── vo
│   │   │   │   └── Node.class
│   │   │   └── web
│   │   │   ├── JsonDateTypeConvert.class
│   │   │   ├── JsonResult.class
│   │   │   └── PageObject.class
│   │   ├── product
│   │   │   ├── controller
│   │   │   │   ├── ProductTypeController.class
│   │   │   │   ├── ProjectController.class
│   │   │   │   └── TeamController.class
│   │   │   ├── dao
│   │   │   │   ├── ProductTypeDao.class
│   │   │   │   ├── ProductTypeMapper.xml
│   │   │   │   ├── ProjectDao.class
│   │   │   │   ├── ProjectMapper.xml
│   │   │   │   ├── TeamDao.class
│   │   │   │   └── TeamMapper.xml
│   │   │   ├── entity
│   │   │   │   ├── ProductType.class
│   │   │   │   ├── Project.class
│   │   │   │   └── Team.class
│   │   │   └── service
│   │   │   ├── impl
│   │   │   │   ├── ProductTypeServiceImpl.class
│   │   │   │   ├── ProjectServiceImpl.class
│   │   │   │   └── TeamServiceImpl.class
│   │   │   ├── ProductTypeService.class
│   │   │   ├── ProjectService.class
│   │   │   └── TeamService.class
│   │   └── system
│   │   ├── controller
│   │   │   ├── SysLoginController.class
│   │   │   ├── SysMenuController.class
│   │   │   ├── SysRoleController.class
│   │   │   └── SysUserController.class
│   │   ├── dao
│   │   │   ├── SysMenuDao.class
│   │   │   ├── SysRoleDao.class
│   │   │   ├── SysRoleMenuDao.class
│   │   │   ├── SysUserDao.class
│   │   │   └── SysUserRoleDao.class
│   │   ├── entity
│   │   │   ├── Organization.class
│   │   │   ├── SysMenu.class
│   │   │   ├── SysRole.class
│   │   │   ├── SysRoleMenu.class
│   │   │   ├── SysUser.class
│   │   │   └── SysUserRole.class
│   │   └── service
│   │   ├── impl
│   │   │   ├── SysMenuServiceImpl.class
│   │   │   ├── SysRoleServiceImpl.class
│   │   │   └── SysUserServiceImpl.class
│   │   ├── SysMenuService.class
│   │   ├── SysRoleService.class
│   │   └── SysUserService.class
│   ├── config.properties
│   ├── log4j2.xml
│   ├── mapper
│   │   └── system
│   │   ├── SysMenuMapper.xml
│   │   ├── SysRoleMapper.xml
│   │   ├── SysRoleMenuMapper.xml
│   │   ├── SysUserMapper.xml
│   │   └── SysUserRoleMapper.xml
│   ├── mybatis-config.xml
│   ├── spring-mvc.xml
│   └── spring-mybatis.xml
├── m2e-wtp
│   └── web-resources
│   └── META-INF
│   ├── MANIFEST.MF
│   └── maven
│   └── cn.tedu
│   └── ttms1.01
│   ├── pom.properties
│   └── pom.xml
└── test-classes
└── product
└── service
├── TestBase.class
├── TestProjectService.class
└── TestTeamService.class

144 directories, 392 files

标签:

实例下载地址

一款基于ssm平台的旅游管理系统

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警