在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → App信息管理系统

App信息管理系统

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:59.04M
  • 下载次数:22
  • 浏览次数:295
  • 发布时间:2020-09-20
  • 实例类别:一般编程问题
  • 发 布 人:robot666
  • 文件格式:.rar
  • 所需积分:2
 

实例介绍

【实例简介】
用ssm做的,个人写了非常详细的注释,数据库文件在里面,包括前台(登录,注销,查询APP信息列表,新增,修改,新增APP版本信息,修改APP版本信息,查看APP,删除APP,App上下架操作)和后台(登录,注销,查看待审核App,,审核App)
【实例截图】
【核心代码】
App信息管理系统
└── App信息管理系统
├── appinfodb.sql
└── AppInfoSystem
├── build
│   └── classes
│   ├── applicationContext-mybatis.xml
│   ├── cn
│   │   └── appsys
│   │   ├── controller
│   │   │   ├── backend
│   │   │   │   ├── AppCheckController.class
│   │   │   │   └── UserLoginController.class
│   │   │   └── developer
│   │   │   ├── AppController.class
│   │   │   └── DevLoginController.class
│   │   ├── dao
│   │   │   ├── appcategory
│   │   │   │   ├── AppCategoryMapper.class
│   │   │   │   └── AppCategoryMapper.xml
│   │   │   ├── appinfo
│   │   │   │   ├── AppInfoMapper.class
│   │   │   │   └── AppInfoMapper.xml
│   │   │   ├── appversion
│   │   │   │   ├── AppVersionMapper.class
│   │   │   │   └── AppVersionMapper.xml
│   │   │   ├── backenduser
│   │   │   │   ├── BackendUserMapper.class
│   │   │   │   └── BackendUserMapper.xml
│   │   │   ├── datadictionary
│   │   │   │   ├── DataDictionaryMapper.class
│   │   │   │   └── DataDictionaryMapper.xml
│   │   │   └── devuser
│   │   │   ├── DevUserMapper.class
│   │   │   └── DevUserMapper.xml
│   │   ├── interceptor
│   │   │   └── SysInterceptor.class
│   │   ├── pojo
│   │   │   ├── AdPromotion.class
│   │   │   ├── AppCategory.class
│   │   │   ├── AppInfo.class
│   │   │   ├── AppVersion.class
│   │   │   ├── BackendUser.class
│   │   │   ├── DataDictionary.class
│   │   │   └── DevUser.class
│   │   ├── service
│   │   │   ├── backend
│   │   │   │   ├── AppService.class
│   │   │   │   ├── AppServiceImpl.class
│   │   │   │   ├── BackendUserService.class
│   │   │   │   └── BackendUserServiceImpl.class
│   │   │   └── developer
│   │   │   ├── AppCategoryService.class
│   │   │   ├── AppCategoryServiceImpl.class
│   │   │   ├── AppInfoService.class
│   │   │   ├── AppInfoServiceImpl.class
│   │   │   ├── AppVersionService.class
│   │   │   ├── AppVersionServiceImpl.class
│   │   │   ├── DataDictionaryService.class
│   │   │   ├── DataDictionaryServiceImpl.class
│   │   │   ├── DevUserService.class
│   │   │   └── DevUserServiceImpl.class
│   │   └── tools
│   │   ├── Constants.class
│   │   └── PageSupport.class
│   ├── database.properties
│   ├── log4j.properties
│   ├── mybatis-config.xml
│   └── springmvc-servlet.xml
├── resources
│   ├── applicationContext-mybatis.xml
│   ├── database.properties
│   ├── log4j.properties
│   ├── mybatis-config.xml
│   └── springmvc-servlet.xml
├── src
│   └── cn
│   └── appsys
│   ├── controller
│   │   ├── backend
│   │   │   ├── AppCheckController.java
│   │   │   └── UserLoginController.java
│   │   └── developer
│   │   ├── AppController.java
│   │   └── DevLoginController.java
│   ├── dao
│   │   ├── appcategory
│   │   │   ├── AppCategoryMapper.java
│   │   │   └── AppCategoryMapper.xml
│   │   ├── appinfo
│   │   │   ├── AppInfoMapper.java
│   │   │   └── AppInfoMapper.xml
│   │   ├── appversion
│   │   │   ├── AppVersionMapper.java
│   │   │   └── AppVersionMapper.xml
│   │   ├── backenduser
│   │   │   ├── BackendUserMapper.java
│   │   │   └── BackendUserMapper.xml
│   │   ├── datadictionary
│   │   │   ├── DataDictionaryMapper.java
│   │   │   └── DataDictionaryMapper.xml
│   │   └── devuser
│   │   ├── DevUserMapper.java
│   │   └── DevUserMapper.xml
│   ├── interceptor
│   │   └── SysInterceptor.java
│   ├── pojo
│   │   ├── AdPromotion.java
│   │   ├── AppCategory.java
│   │   ├── AppInfo.java
│   │   ├── AppVersion.java
│   │   ├── BackendUser.java
│   │   ├── DataDictionary.java
│   │   └── DevUser.java
│   ├── service
│   │   ├── backend
│   │   │   ├── AppServiceImpl.java
│   │   │   ├── AppService.java
│   │   │   ├── BackendUserServiceImpl.java
│   │   │   └── BackendUserService.java
│   │   └── developer
│   │   ├── AppCategoryServiceImpl.java
│   │   ├── AppCategoryService.java
│   │   ├── AppInfoServiceImpl.java
│   │   ├── AppInfoService.java
│   │   ├── AppVersionServiceImpl.java
│   │   ├── AppVersionService.java
│   │   ├── DataDictionaryServiceImpl.java
│   │   ├── DataDictionaryService.java
│   │   ├── DevUserServiceImpl.java
│   │   └── DevUserService.java
│   └── tools
│   ├── Constants.java
│   └── PageSupport.java
└── WebRoot
├── 403.jsp
├── index.jsp
├── META-INF
│   └── MANIFEST.MF
├── statics
│   ├── css
│   │   ├── bootstrap.min.css
│   │   ├── bootstrap-progressbar-3.3.4.min.css
│   │   ├── custom.min.css
│   │   ├── dropzone.min.css
│   │   ├── font-awesome.min.css
│   │   ├── green@2x.png
│   │   ├── green.css
│   │   ├── green.png
│   │   ├── jquery.mCustomScrollbar.min.css
│   │   ├── jqvmap.min.css
│   │   ├── maps
│   │   │   └── jquery-jvectormap-2.0.3.css
│   │   └── nprogress.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
│   ├── images
│   │   ├── american-express.png
│   │   ├── cropper.jpg
│   │   ├── img1.jpg
│   │   ├── img.jpg
│   │   ├── inbox.png
│   │   ├── mastercard.png
│   │   ├── media.jpg
│   │   ├── paypal.png
│   │   ├── picture.jpg
│   │   ├── prod-1.jpg
│   │   ├── prod-2.jpg
│   │   ├── prod-3.jpg
│   │   ├── prod-4.jpg
│   │   ├── prod-5.jpg
│   │   ├── user.png
│   │   └── visa.png
│   ├── js
│   │   ├── bootstrap.min.js
│   │   ├── custom.min.js
│   │   ├── datepicker
│   │   │   └── daterangepicker.js
│   │   ├── dropzone.js
│   │   ├── fastclick.js
│   │   ├── jquery.mCustomScrollbar.concat.min.js
│   │   ├── jquery.min.js
│   │   ├── moment
│   │   │   └── moment.min.js
│   │   ├── nprogress.js
│   │   └── validator.js
│   ├── localcss
│   │   ├── appinfoadd.css
│   │   ├── appinfolist.css
│   │   ├── applist.css
│   │   └── rollpage.css
│   ├── localjs
│   │   ├── appcheck.js
│   │   ├── appinfoadd.js
│   │   ├── appinfolist.js
│   │   ├── appinfomodify.js
│   │   ├── appinfoview.js
│   │   ├── applist.js
│   │   ├── appversionadd.js
│   │   ├── appversionmodify.js
│   │   └── rollpage.js
│   └── uploadfiles
│   ├── air.net.machinarium.Machinarium.GP.jpg
│   ├── air.net.machinarium.Machinarium.GP-V1.1.1.apk
│   ├── com.bithack.apparatus.jpg
│   ├── com.bithack.apparatus-V1.1.1.apk
│   ├── com.bithack.apparatus-V1.1.2.apk
│   ├── com.doodleapps.powdertoy.jpg
│   ├── com.doodleapps.powdertoy-V1.1.2.apk
│   ├── com.doodleapps.powdertoy-V1.1.31.apk
│   ├── com.doodleapps.powdertoy-V1.1.3.apk
│   ├── com.gd.www.jpg
│   ├── com.gd.www-v.05.apk
│   ├── com.gd.www-v0.5.apk
│   ├── com.google.android.inputmethod.pinyin.jpg
│   ├── com.google.android.inputmethod.pinyin-V1.1.1.apk
│   ├── com.katecca.screenofflockdonate.jpg
│   ├── com.kleientertainment.doNotStarvePocket.jpg
│   ├── com.kleientertainment.doNotStarvePocket-V1.1.1.apk
│   ├── com.kleientertainment.doNotStarvePocket-V1.1.2.apk
│   ├── com.lbe.security.jpg
│   ├── com.momocorp.o2jamu.jpg
│   ├── com.plexnor.gravityscreenoffpro.jpg
│   ├── com.qhg.www.jpg
│   ├── com.qhg.www-v0.5.apk
│   ├── com.speedsoftware.rootexplorer.jpg
│   ├── com.speedsoftware.rootexplorer-V1.1.1.apk
│   └── com.sp.protector.free.jpg
└── WEB-INF
├── jsp
│   ├── backend
│   │   ├── appcheck.jsp
│   │   ├── applist.jsp
│   │   ├── common
│   │   │   ├── footer.jsp
│   │   │   ├── header.jsp
│   │   │   └── js.jsp
│   │   └── main.jsp
│   ├── backendlogin.jsp
│   ├── developer
│   │   ├── appinfoadd.jsp
│   │   ├── appinfolist.jsp
│   │   ├── appinfomodify.jsp
│   │   ├── appinfoview.jsp
│   │   ├── appversionadd.jsp
│   │   ├── appversionmodify.jsp
│   │   ├── common
│   │   │   ├── footer.jsp
│   │   │   ├── header.jsp
│   │   │   └── js.jsp
│   │   └── main.jsp
│   ├── devlogin.jsp
│   ├── error.jsp
│   └── rollpage.jsp
├── lib
│   ├── aopalliance.jar
│   ├── aspectjweaver.jar
│   ├── commons-dbcp-1.4.jar
│   ├── commons-fileupload-1.2.2.jar
│   ├── commons-io-2.4.jar
│   ├── commons-lang-2.6.jar
│   ├── commons-logging-1.2.jar
│   ├── commons-pool-1.6.jar
│   ├── fastjson-1.2.13.jar
│   ├── fastjson-1.2.13-sources.jar
│   ├── hibernate-validator-4.3.2.Final.jar
│   ├── jboss-logging-3.1.0.CR2.jar
│   ├── jstl.jar
│   ├── log4j-1.2.17.jar
│   ├── mybatis-3.2.2.jar
│   ├── mybatis-spring-1.3.2.jar
│   ├── mysql-connector-java-5.1.0-bin.jar
│   ├── spring-aop-5.0.6.RELEASE.jar
│   ├── spring-beans-5.0.6.RELEASE.jar
│   ├── spring-context-5.0.6.RELEASE.jar
│   ├── spring-core-5.0.6.RELEASE.jar
│   ├── spring-expression-5.0.6.RELEASE.jar
│   ├── spring-jdbc-5.0.6.RELEASE.jar
│   ├── spring-tx-5.0.6.RELEASE.jar
│   ├── spring-web-5.0.6.RELEASE.jar
│   ├── spring-webmvc-5.0.6.RELEASE.jar
│   └── standard.jar
└── web.xml

62 directories, 230 files

标签:

实例下载地址

App信息管理系统

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警