在好例子网,分享、交流、成长!
您当前所在位置:首页Java 开发实例Web服务/SOAP/RPC → SSM项目实战--APP信息管理平台

SSM项目实战--APP信息管理平台

Web服务/SOAP/RPC

下载此实例
  • 开发语言:Java
  • 实例大小:0.04M
  • 下载次数:28
  • 浏览次数:371
  • 发布时间:2022-03-03
  • 实例类别:Web服务/SOAP/RPC
  • 发 布 人:IT-通
  • 文件格式:.sql
  • 所需积分:2
 相关标签: 管理平台 app管理

实例介绍

【实例简介】SSM项目实战--APP信息管理平台

【实例截图】


【核心代码】

.
├── App
│   ├── pom.xml
│   ├── src
│   │   └── main
│   │       ├── java
│   │       │   └── cn
│   │       │       └── appinfodb
│   │       │           ├── controller
│   │       │           │   ├── backend
│   │       │           │   │   ├── AppCheckController.java
│   │       │           │   │   └── BackendUserController.java
│   │       │           │   └── developer
│   │       │           │       ├── AppInfoController.java
│   │       │           │       └── DevUserController.java
│   │       │           ├── dao
│   │       │           │   ├── appcategory
│   │       │           │   │   ├── AppCategoryMapper.java
│   │       │           │   │   └── AppCategoryMapper.xml
│   │       │           │   ├── appinfo
│   │       │           │   │   ├── AppInfoMapper.java
│   │       │           │   │   └── AppInfoMapper.xml
│   │       │           │   ├── backendUser
│   │       │           │   │   ├── BackendUserMapper.java
│   │       │           │   │   └── BackendUserMapper.xml
│   │       │           │   ├── datadictionary
│   │       │           │   │   ├── DataDictionaryMapper.java
│   │       │           │   │   └── DataDictionaryMapper.xml
│   │       │           │   ├── devlogin
│   │       │           │   │   ├── DevUserMapper.java
│   │       │           │   │   └── DevUserMapper.xml
│   │       │           │   └── version
│   │       │           │       ├── AppVersionMapper.java
│   │       │           │       └── AppVersionMapper.xml
│   │       │           ├── entity
│   │       │           │   ├── AdPromotion.java
│   │       │           │   ├── AppCategory.java
│   │       │           │   ├── AppInfo.java
│   │       │           │   ├── AppVersion.java
│   │       │           │   ├── BackendUser.java
│   │       │           │   ├── DataDictionary.java
│   │       │           │   └── DevUser.java
│   │       │           ├── service
│   │       │           │   ├── DevUser
│   │       │           │   │   ├── DevUserService.java
│   │       │           │   │   └── Impl
│   │       │           │   │       └── DevUserServiceImpl.java
│   │       │           │   ├── appCategory
│   │       │           │   │   ├── AppCategoryService.java
│   │       │           │   │   └── impl
│   │       │           │   │       └── AppCategoryServiceImpl.java
│   │       │           │   ├── appinfo
│   │       │           │   │   ├── AppInfoService.java
│   │       │           │   │   └── impl
│   │       │           │   │       └── AppInfoServiceImpl.java
│   │       │           │   ├── backendUser
│   │       │           │   │   ├── BackendUserService.java
│   │       │           │   │   └── impl
│   │       │           │   │       └── BackendUserServiceImpl.java
│   │       │           │   ├── dataDictionary
│   │       │           │   │   ├── DataDictionaryService.java
│   │       │           │   │   └── impl
│   │       │           │   │       └── DataDictionaryServiceImpl.java
│   │       │           │   └── version
│   │       │           │       ├── AppVersionService.java
│   │       │           │       └── impl
│   │       │           │           └── AppVersionServiceImpl.java
│   │       │           └── util
│   │       │               ├── AppInterceptor1.java
│   │       │               ├── AppInterceptor2.java
│   │       │               ├── Constants.java
│   │       │               ├── PageSupport.java
│   │       │               └── StringToDateConverter.java
│   │       ├── resources
│   │       │   ├── applicationContext.xml
│   │       │   ├── database.properties
│   │       │   ├── log4j.properties
│   │       │   ├── mybatis-config.xml
│   │       │   └── springmvc-servlet.xml
│   │       └── webapp
│   │           ├── 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
│   │           │   │   └── entrance.jsp
│   │           │   └── web.xml
│   │           └── statics
│   │               ├── css
│   │               │   ├── bootstrap-progressbar-3.3.4.min.css
│   │               │   ├── bootstrap.min.css
│   │               │   ├── custom.min.css
│   │               │   ├── dropzone.min.css
│   │               │   ├── font-awesome.min.css
│   │               │   ├── green.css
│   │               │   ├── green.png
│   │               │   ├── green@2x.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
│   │               │   ├── img.jpg
│   │               │   ├── img1.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
│   │               ├── localjs
│   │               │   ├── appcheck.js
│   │               │   ├── appinfoadd.js
│   │               │   ├── appinfolist.js
│   │               │   ├── appinfomodify.js
│   │               │   ├── appinfoview.js
│   │               │   ├── applist.js
│   │               │   ├── appversionadd.js
│   │               │   ├── appversionmodify.js
│   │               │   └── rollpage.js
│   │               └── uploadfiles
│   │                   ├── 12202_1382320119_2819.png
│   │                   ├── 12202_1390386213_4773.apk
│   │                   ├── 12202_1397467575_8568.apk
│   │                   ├── 2-110R2093034L7.png
│   │                   ├── Apparatus.apk
│   │                   ├── air.net.machinarium.Machinarium.GP-2.0.35-2000035.apk
│   │                   ├── air.net.machinarium.Machinarium.GP.jpg
│   │                   ├── com.doodleapps.powdertoy.apk
│   │                   ├── com.doodleapps.powdertoy.png
│   │                   ├── com.google.android.inputmethod.pinyin.jpg
│   │                   ├── com.google.android.inputmethod.pinyin_4.3.1.128147547-armeabi-v7a_4310115.apk
│   │                   ├── com.katecca.screenofflockdonate.png
│   │                   ├── com.kleientertainment.doNotStarvePocket-0.1-8.apk
│   │                   ├── com.kleientertainment.doNotStarvePocket.jpg
│   │                   ├── com.lbe.security.jpg
│   │                   ├── com.lbe.security_311.apk
│   │                   ├── com.momocorp.o2jamu-1.6.0.52-16052.apk
│   │                   ├── com.momocorp.o2jamu.jpg
│   │                   ├── com.plexnor.gravityscreenoffpro.png
│   │                   ├── com.realarcade.doj.png
│   │                   ├── com.sp.protector.free-6.7.2-165.apk
│   │                   ├── com.speedsoftware.rootexplorer-4.0.1-112.apk
│   │                   └── com.speedsoftware.rootexplorer.jpg
│   └── target
│       ├── SSMPro
│       │   ├── META-INF
│       │   │   └── MANIFEST.MF
│       │   ├── WEB-INF
│       │   │   ├── classes
│       │   │   │   ├── applicationContext.xml
│       │   │   │   ├── cn
│       │   │   │   │   └── appinfodb
│       │   │   │   │       ├── controller
│       │   │   │   │       │   ├── backend
│       │   │   │   │       │   │   ├── AppCheckController.class
│       │   │   │   │       │   │   └── BackendUserController.class
│       │   │   │   │       │   └── developer
│       │   │   │   │       │       ├── AppInfoController.class
│       │   │   │   │       │       └── DevUserController.class
│       │   │   │   │       ├── dao
│       │   │   │   │       │   ├── appcategory
│       │   │   │   │       │   │   ├── AppCategoryMapper.class
│       │   │   │   │       │   │   └── AppCategoryMapper.xml
│       │   │   │   │       │   ├── appinfo
│       │   │   │   │       │   │   ├── AppInfoMapper.class
│       │   │   │   │       │   │   └── AppInfoMapper.xml
│       │   │   │   │       │   ├── backendUser
│       │   │   │   │       │   │   ├── BackendUserMapper.class
│       │   │   │   │       │   │   └── BackendUserMapper.xml
│       │   │   │   │       │   ├── datadictionary
│       │   │   │   │       │   │   ├── DataDictionaryMapper.class
│       │   │   │   │       │   │   └── DataDictionaryMapper.xml
│       │   │   │   │       │   ├── devlogin
│       │   │   │   │       │   │   ├── DevUserMapper.class
│       │   │   │   │       │   │   └── DevUserMapper.xml
│       │   │   │   │       │   └── version
│       │   │   │   │       │       ├── AppVersionMapper.class
│       │   │   │   │       │       └── AppVersionMapper.xml
│       │   │   │   │       ├── entity
│       │   │   │   │       │   ├── AdPromotion.class
│       │   │   │   │       │   ├── AppCategory.class
│       │   │   │   │       │   ├── AppInfo.class
│       │   │   │   │       │   ├── AppVersion.class
│       │   │   │   │       │   ├── BackendUser.class
│       │   │   │   │       │   ├── DataDictionary.class
│       │   │   │   │       │   └── DevUser.class
│       │   │   │   │       ├── service
│       │   │   │   │       │   ├── DevUser
│       │   │   │   │       │   │   ├── DevUserService.class
│       │   │   │   │       │   │   └── Impl
│       │   │   │   │       │   │       └── DevUserServiceImpl.class
│       │   │   │   │       │   ├── appCategory
│       │   │   │   │       │   │   ├── AppCategoryService.class
│       │   │   │   │       │   │   └── impl
│       │   │   │   │       │   │       └── AppCategoryServiceImpl.class
│       │   │   │   │       │   ├── appinfo
│       │   │   │   │       │   │   ├── AppInfoService.class
│       │   │   │   │       │   │   └── impl
│       │   │   │   │       │   │       └── AppInfoServiceImpl.class
│       │   │   │   │       │   ├── backendUser
│       │   │   │   │       │   │   ├── BackendUserService.class
│       │   │   │   │       │   │   └── impl
│       │   │   │   │       │   │       └── BackendUserServiceImpl.class
│       │   │   │   │       │   ├── dataDictionary
│       │   │   │   │       │   │   ├── DataDictionaryService.class
│       │   │   │   │       │   │   └── impl
│       │   │   │   │       │   │       └── DataDictionaryServiceImpl.class
│       │   │   │   │       │   └── version
│       │   │   │   │       │       ├── AppVersionService.class
│       │   │   │   │       │       └── impl
│       │   │   │   │       │           └── AppVersionServiceImpl.class
│       │   │   │   │       └── util
│       │   │   │   │           ├── AppInterceptor1.class
│       │   │   │   │           ├── AppInterceptor2.class
│       │   │   │   │           ├── Constants.class
│       │   │   │   │           ├── PageSupport.class
│       │   │   │   │           └── StringToDateConverter.class
│       │   │   │   ├── database.properties
│       │   │   │   ├── log4j.properties
│       │   │   │   ├── mybatis-config.xml
│       │   │   │   └── springmvc-servlet.xml
│       │   │   ├── 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
│       │   │   │   └── entrance.jsp
│       │   │   ├── lib
│       │   │   │   ├── aopalliance-1.0.jar
│       │   │   │   ├── aspectjweaver-1.9.6.jar
│       │   │   │   ├── classmate-1.3.1.jar
│       │   │   │   ├── commons-dbcp-1.4.jar
│       │   │   │   ├── commons-fileupload-1.4.jar
│       │   │   │   ├── commons-io-2.11.0.jar
│       │   │   │   ├── commons-lang-2.6.jar
│       │   │   │   ├── commons-logging-1.2.jar
│       │   │   │   ├── commons-pool-1.6.jar
│       │   │   │   ├── fastjson-1.2.79.jar
│       │   │   │   ├── hibernate-validator-5.3.6.Final.jar
│       │   │   │   ├── jboss-logging-3.3.0.Final.jar
│       │   │   │   ├── jstl-1.2.jar
│       │   │   │   ├── log4j-api-2.17.0.jar
│       │   │   │   ├── log4j-core-2.17.0.jar
│       │   │   │   ├── log4j-web-2.17.0.jar
│       │   │   │   ├── mybatis-3.5.6.jar
│       │   │   │   ├── mybatis-spring-2.0.6.jar
│       │   │   │   ├── mysql-connector-java-8.0.26.jar
│       │   │   │   ├── protobuf-java-3.11.4.jar
│       │   │   │   ├── servlet-api-2.5.jar
│       │   │   │   ├── spring-aop-5.3.15.jar
│       │   │   │   ├── spring-beans-5.3.15.jar
│       │   │   │   ├── spring-context-5.3.15.jar
│       │   │   │   ├── spring-core-5.3.15.jar
│       │   │   │   ├── spring-expression-5.3.15.jar
│       │   │   │   ├── spring-jcl-5.3.15.jar
│       │   │   │   ├── spring-jdbc-5.3.15.jar
│       │   │   │   ├── spring-tx-5.3.15.jar
│       │   │   │   ├── spring-web-5.3.15.jar
│       │   │   │   ├── spring-webmvc-5.3.15.jar
│       │   │   │   ├── standard-1.1.2.jar
│       │   │   │   └── validation-api-1.1.0.Final.jar
│       │   │   └── web.xml
│       │   └── statics
│       │       ├── css
│       │       │   ├── bootstrap-progressbar-3.3.4.min.css
│       │       │   ├── bootstrap.min.css
│       │       │   ├── custom.min.css
│       │       │   ├── dropzone.min.css
│       │       │   ├── font-awesome.min.css
│       │       │   ├── green.css
│       │       │   ├── green.png
│       │       │   ├── green@2x.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
│       │       │   ├── img.jpg
│       │       │   ├── img1.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
│       │       ├── localjs
│       │       │   ├── appcheck.js
│       │       │   ├── appinfoadd.js
│       │       │   ├── appinfolist.js
│       │       │   ├── appinfomodify.js
│       │       │   ├── appinfoview.js
│       │       │   ├── applist.js
│       │       │   ├── appversionadd.js
│       │       │   ├── appversionmodify.js
│       │       │   └── rollpage.js
│       │       └── uploadfiles
│       │           ├── 12202_1382320119_2819.png
│       │           ├── 12202_1390386213_4773.apk
│       │           ├── 12202_1397467575_8568.apk
│       │           ├── 1646270335923.apk
│       │           ├── 1646270770493_Personal.jpg
│       │           ├── 2-110R2093034L7.png
│       │           ├── Apparatus.apk
│       │           ├── air.net.machinarium.Machinarium.GP-2.0.35-2000035.apk
│       │           ├── air.net.machinarium.Machinarium.GP.jpg
│       │           ├── com.doodleapps.powdertoy.apk
│       │           ├── com.doodleapps.powdertoy.png
│       │           ├── com.google.android.inputmethod.pinyin.jpg
│       │           ├── com.google.android.inputmethod.pinyin_4.3.1.128147547-armeabi-v7a_4310115.apk
│       │           ├── com.katecca.screenofflockdonate.png
│       │           ├── com.kleientertainment.doNotStarvePocket-0.1-8.apk
│       │           ├── com.kleientertainment.doNotStarvePocket.jpg
│       │           ├── com.lbe.security.jpg
│       │           ├── com.lbe.security_311.apk
│       │           ├── com.momocorp.o2jamu-1.6.0.52-16052.apk
│       │           ├── com.momocorp.o2jamu.jpg
│       │           ├── com.plexnor.gravityscreenoffpro.png
│       │           ├── com.realarcade.doj.png
│       │           ├── com.sp.protector.free-6.7.2-165.apk
│       │           ├── com.speedsoftware.rootexplorer-4.0.1-112.apk
│       │           └── com.speedsoftware.rootexplorer.jpg
│       ├── classes
│       │   ├── applicationContext.xml
│       │   ├── cn
│       │   │   └── appinfodb
│       │   │       ├── controller
│       │   │       │   ├── backend
│       │   │       │   │   ├── AppCheckController.class
│       │   │       │   │   └── BackendUserController.class
│       │   │       │   └── developer
│       │   │       │       ├── AppInfoController.class
│       │   │       │       └── DevUserController.class
│       │   │       ├── dao
│       │   │       │   ├── appcategory
│       │   │       │   │   ├── AppCategoryMapper.class
│       │   │       │   │   └── AppCategoryMapper.xml
│       │   │       │   ├── appinfo
│       │   │       │   │   ├── AppInfoMapper.class
│       │   │       │   │   └── AppInfoMapper.xml
│       │   │       │   ├── backendUser
│       │   │       │   │   ├── BackendUserMapper.class
│       │   │       │   │   └── BackendUserMapper.xml
│       │   │       │   ├── datadictionary
│       │   │       │   │   ├── DataDictionaryMapper.class
│       │   │       │   │   └── DataDictionaryMapper.xml
│       │   │       │   ├── devlogin
│       │   │       │   │   ├── DevUserMapper.class
│       │   │       │   │   └── DevUserMapper.xml
│       │   │       │   └── version
│       │   │       │       ├── AppVersionMapper.class
│       │   │       │       └── AppVersionMapper.xml
│       │   │       ├── entity
│       │   │       │   ├── AdPromotion.class
│       │   │       │   ├── AppCategory.class
│       │   │       │   ├── AppInfo.class
│       │   │       │   ├── AppVersion.class
│       │   │       │   ├── BackendUser.class
│       │   │       │   ├── DataDictionary.class
│       │   │       │   └── DevUser.class
│       │   │       ├── service
│       │   │       │   ├── DevUser
│       │   │       │   │   ├── DevUserService.class
│       │   │       │   │   └── Impl
│       │   │       │   │       └── DevUserServiceImpl.class
│       │   │       │   ├── appCategory
│       │   │       │   │   ├── AppCategoryService.class
│       │   │       │   │   └── impl
│       │   │       │   │       └── AppCategoryServiceImpl.class
│       │   │       │   ├── appinfo
│       │   │       │   │   ├── AppInfoService.class
│       │   │       │   │   └── impl
│       │   │       │   │       └── AppInfoServiceImpl.class
│       │   │       │   ├── backendUser
│       │   │       │   │   ├── BackendUserService.class
│       │   │       │   │   └── impl
│       │   │       │   │       └── BackendUserServiceImpl.class
│       │   │       │   ├── dataDictionary
│       │   │       │   │   ├── DataDictionaryService.class
│       │   │       │   │   └── impl
│       │   │       │   │       └── DataDictionaryServiceImpl.class
│       │   │       │   └── version
│       │   │       │       ├── AppVersionService.class
│       │   │       │       └── impl
│       │   │       │           └── AppVersionServiceImpl.class
│       │   │       └── util
│       │   │           ├── AppInterceptor1.class
│       │   │           ├── AppInterceptor2.class
│       │   │           ├── Constants.class
│       │   │           ├── PageSupport.class
│       │   │           └── StringToDateConverter.class
│       │   ├── database.properties
│       │   ├── log4j.properties
│       │   ├── mybatis-config.xml
│       │   └── springmvc-servlet.xml
│       └── generated-sources
│           └── annotations
└── SSM项目实战--APP信息管理平台.rar

129 directories, 381 files



实例下载地址

SSM项目实战--APP信息管理平台

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警