实例介绍
使用idea整合的ssm框架,功能有查询,修改,删除,分页 1、创建数据库名为:crm 将本工程提供的crm数据导入到crm中 2、工程数据库管理在:jdbc.properties 3、工程采用:maven创建
【实例截图】
【核心代码】
工程
├── crm_cxg
│ ├── crm_cxg.iml
│ ├── lib
│ │ ├── aopalliance-1.0.jar
│ │ ├── commons-logging-1.2.jar
│ │ ├── spring-aop-4.3.18.RELEASE.jar
│ │ ├── spring-aspects-4.3.18.RELEASE.jar
│ │ ├── spring-beans-4.3.18.RELEASE.jar
│ │ ├── spring-context-4.3.18.RELEASE.jar
│ │ ├── spring-context-support-4.3.18.RELEASE.jar
│ │ ├── spring-core-4.3.18.RELEASE.jar
│ │ ├── spring-expression-4.3.18.RELEASE.jar
│ │ ├── spring-instrument-4.3.18.RELEASE.jar
│ │ ├── spring-instrument-tomcat-4.3.18.RELEASE.jar
│ │ ├── spring-jdbc-4.3.18.RELEASE.jar
│ │ ├── spring-jms-4.3.18.RELEASE.jar
│ │ ├── spring-messaging-4.3.18.RELEASE.jar
│ │ ├── spring-orm-4.3.18.RELEASE.jar
│ │ ├── spring-oxm-4.3.18.RELEASE.jar
│ │ ├── spring-test-4.3.18.RELEASE.jar
│ │ └── spring-tx-4.3.18.RELEASE.jar
│ ├── pom.xml
│ ├── src
│ │ └── main
│ │ ├── java
│ │ │ └── com
│ │ │ └── itheima
│ │ │ └── crm
│ │ │ ├── controller
│ │ │ │ └── CustomerController.java
│ │ │ ├── mapper
│ │ │ │ ├── BaseDictMapper.java
│ │ │ │ ├── BaseDictMapper.xml
│ │ │ │ ├── CustomerMapper.java
│ │ │ │ └── CustomerMapper.xml
│ │ │ ├── pojo
│ │ │ │ ├── BaseDict.java
│ │ │ │ ├── Customer.java
│ │ │ │ └── QueryVo.java
│ │ │ ├── service
│ │ │ │ ├── BaseDictService.java
│ │ │ │ ├── CustomerService.java
│ │ │ │ └── Impl
│ │ │ │ ├── BaseDictServiceImpl.java
│ │ │ │ └── CustomerServiceImpl.java
│ │ │ └── utils
│ │ │ ├── MyTag.java
│ │ │ ├── NavigationTag.java
│ │ │ └── Page.java
│ │ ├── resources
│ │ │ ├── crm.properties
│ │ │ ├── jdbc.properties
│ │ │ ├── log4j.properties
│ │ │ ├── spring
│ │ │ │ ├── applicationContext-dao.xml
│ │ │ │ ├── applicationContext-service.xml
│ │ │ │ ├── applicationContext-trans.xml
│ │ │ │ └── springmvc.xml
│ │ │ └── SqlMapConfig.xml
│ │ └── webapp
│ │ ├── css
│ │ │ ├── boot-crm.css
│ │ │ ├── bootstrap.min.css
│ │ │ ├── dataTables.bootstrap.css
│ │ │ ├── font-awesome.min.css
│ │ │ ├── metisMenu.min.css
│ │ │ └── sb-admin-2.css
│ │ ├── fonts
│ │ │ ├── FontAwesome.otf
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.svg
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ └── fontawesome-webfont.woff
│ │ ├── index.jsp
│ │ ├── js
│ │ │ ├── bootstrap.min.js
│ │ │ ├── dataTables.bootstrap.min.js
│ │ │ ├── jquery.dataTables.min.js
│ │ │ ├── jquery.min.js
│ │ │ ├── metisMenu.min.js
│ │ │ └── sb-admin-2.js
│ │ └── WEB-INF
│ │ ├── jsp
│ │ │ └── customer.jsp
│ │ ├── tld
│ │ │ ├── commons.tld
│ │ │ └── myTag.tld
│ │ └── web.xml
│ └── target
│ ├── classes
│ │ ├── com
│ │ │ └── itheima
│ │ │ └── crm
│ │ │ ├── controller
│ │ │ │ └── CustomerController.class
│ │ │ ├── mapper
│ │ │ │ ├── BaseDictMapper.class
│ │ │ │ └── CustomerMapper.class
│ │ │ ├── pojo
│ │ │ │ ├── BaseDict.class
│ │ │ │ ├── Customer.class
│ │ │ │ └── QueryVo.class
│ │ │ ├── service
│ │ │ │ ├── BaseDictService.class
│ │ │ │ ├── CustomerService.class
│ │ │ │ └── Impl
│ │ │ │ ├── BaseDictServiceImpl.class
│ │ │ │ └── CustomerServiceImpl.class
│ │ │ └── utils
│ │ │ ├── MyTag.class
│ │ │ ├── NavigationTag.class
│ │ │ └── Page.class
│ │ ├── crm.properties
│ │ ├── jdbc.properties
│ │ ├── log4j.properties
│ │ ├── spring
│ │ │ ├── applicationContext-dao.xml
│ │ │ ├── applicationContext-service.xml
│ │ │ ├── applicationContext-trans.xml
│ │ │ └── springmvc.xml
│ │ └── SqlMapConfig.xml
│ └── crm_cxg-1.0-SNAPSHOT
│ ├── css
│ │ ├── boot-crm.css
│ │ ├── bootstrap.min.css
│ │ ├── dataTables.bootstrap.css
│ │ ├── font-awesome.min.css
│ │ ├── metisMenu.min.css
│ │ └── sb-admin-2.css
│ ├── fonts
│ │ ├── FontAwesome.otf
│ │ ├── fontawesome-webfont.eot
│ │ ├── fontawesome-webfont.svg
│ │ ├── fontawesome-webfont.ttf
│ │ └── fontawesome-webfont.woff
│ ├── index.jsp
│ ├── js
│ │ ├── bootstrap.min.js
│ │ ├── dataTables.bootstrap.min.js
│ │ ├── jquery.dataTables.min.js
│ │ ├── jquery.min.js
│ │ ├── metisMenu.min.js
│ │ └── sb-admin-2.js
│ ├── META-INF
│ │ └── MANIFEST.MF
│ └── WEB-INF
│ ├── classes
│ │ ├── com
│ │ │ └── itheima
│ │ │ └── crm
│ │ │ ├── controller
│ │ │ │ └── CustomerController.class
│ │ │ ├── mapper
│ │ │ │ ├── BaseDiceMapper.xml
│ │ │ │ ├── BaseDictMapper.class
│ │ │ │ ├── BaseDictMapper.xml
│ │ │ │ ├── CustomerMapper.class
│ │ │ │ └── CustomerMapper.xml
│ │ │ ├── pojo
│ │ │ │ ├── BaseDict.class
│ │ │ │ ├── Customer.class
│ │ │ │ └── QueryVo.class
│ │ │ ├── service
│ │ │ │ ├── BaseDictService.class
│ │ │ │ ├── CustomerService.class
│ │ │ │ └── Impl
│ │ │ │ ├── BaseDictServiceImpl.class
│ │ │ │ └── CustomerServiceImpl.class
│ │ │ └── utils
│ │ │ ├── MyTag.class
│ │ │ ├── NavigationTag.class
│ │ │ └── Page.class
│ │ ├── crm.properties
│ │ ├── jdbc.properties
│ │ ├── log4j.properties
│ │ ├── spring
│ │ │ ├── applicationContext-dao.xml
│ │ │ ├── applicationContext-service.xml
│ │ │ ├── applicationContext-trans.xml
│ │ │ └── springmvc.xml
│ │ └── SqlMapConfig.xml
│ ├── jsp
│ │ └── customer.jsp
│ ├── lib
│ │ ├── aspectjweaver-1.8.9.jar
│ │ ├── classmate-1.3.1.jar
│ │ ├── commons-logging-1.2.jar
│ │ ├── druid-1.1.9.jar
│ │ ├── hamcrest-core-1.3.jar
│ │ ├── hibernate-validator-5.4.1.Final.jar
│ │ ├── jackson-annotations-2.8.0.jar
│ │ ├── jackson-core-2.8.8.jar
│ │ ├── jackson-databind-2.8.8.jar
│ │ ├── jboss-logging-3.3.0.Final.jar
│ │ ├── jsqlparser-0.9.5.jar
│ │ ├── jstl-1.2.jar
│ │ ├── junit-4.12.jar
│ │ ├── log4j-1.2.17.jar
│ │ ├── mybatis-3.4.2.jar
│ │ ├── mybatis-generator-core-1.3.5.jar
│ │ ├── mybatis-spring-1.3.1.jar
│ │ ├── mysql-connector-java-5.1.41.jar
│ │ ├── pagehelper-5.0.0.jar
│ │ ├── spring-aop-4.3.7.RELEASE.jar
│ │ ├── spring-aspects-4.3.7.RELEASE.jar
│ │ ├── spring-beans-4.3.7.RELEASE.jar
│ │ ├── spring-context-4.3.7.RELEASE.jar
│ │ ├── spring-core-4.3.7.RELEASE.jar
│ │ ├── spring-expression-4.3.7.RELEASE.jar
│ │ ├── spring-jdbc-4.3.7.RELEASE.jar
│ │ ├── spring-test-4.3.7.RELEASE.jar
│ │ ├── spring-tx-4.3.7.RELEASE.jar
│ │ ├── spring-web-4.3.7.RELEASE.jar
│ │ ├── spring-webmvc-4.3.7.RELEASE.jar
│ │ └── validation-api-1.1.0.Final.jar
│ ├── tld
│ │ ├── commons.tld
│ │ └── myTag.tld
│ └── web.xml
├── crm.sql
└── 文件配置.txt
55 directories, 166 files
标签:
相关软件
网友评论
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
支持(0) 盖楼(回复)