博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SSM整合模板
阅读量:5231 次
发布时间:2019-06-14

本文共 3726 字,大约阅读时间需要 12 分钟。

Test项目目录

├─src│  ├─jdbc.properties---连接池配置│  ├─log4j.properties---日志配置│  ├─springmvc.xml---Controller扫描 注解驱动 视图解析器配置│  ├─com│  │  └─java│  │      └─crm│  │          ├─controller│  │          ├─entity│  │          ├─mapper│  │          └─service│  ├─mybatis│  │  ├─SqlMapConfig.xml---别名配置│  └─spring│     ├─applicationContext-dao.xml--数据源 SqlSessionFactory Mapper扫描配置│     ├─applicationContext-service.xml---Service扫描配置│     └─applicationContext-trans.xml---事务管理 事务管理器 通知 切面配置└─WebContent    ├─META-INF    └─WEB-INF        ├─web.xml---Spring容器 SpringMVC前端控制器 解决POST乱码配置        └─lib

导入 包

aopalliance-1.0.jarasm-3.3.1.jaraspectjweaver-1.8.4.jarcglib-2.2.2.jarcommons-codec-1.6.jarcommons-collections-1.0.jarcommons-fileupload-1.2.2.jarcommons-io-1.3.2.jarcommons-lang3-3.1.jarcommons-lang3-3.4.jarcommons-logging-1.2.jarcommons-pool2-2.0.jardom4j-1.6.1.jardruid-1.0.9.jarhamcrest-core-1.3.jarjackson-annotations-2.4.0.jarjackson-core-2.4.2.jarjackson-databind-2.4.2.jarjson-20131018.jarjstl-1.2.jarjunit-4.12.jarlog4j-1.2.17.jarmybatis-3.2.7.jarmybatis-spring-1.2.2.jarmysql-connector-java-5.1.8.jarslf4j-api-1.6.6.jarslf4j-log4j12-1.6.6.jarspring-aop-4.1.3.RELEASE.jarspring-aspects-4.1.3.RELEASE.jarspring-beans-4.1.3.RELEASE.jarspring-context-4.1.3.RELEASE.jarspring-context-support-4.1.3.RELEASE.jarspring-core-4.1.3.RELEASE.jarspring-expression-4.1.3.RELEASE.jarspring-jdbc-4.1.3.RELEASE.jarspring-jms-4.1.3.RELEASE.jarspring-messaging-4.1.3.RELEASE.jarspring-test-4.1.3.RELEASE.jarspring-tx-4.1.3.RELEASE.jarspring-web-4.1.3.RELEASE.jarspring-webmvc-4.1.3.RELEASE.jarstandard-1.1.2.jar

SqlMapConfig.xml

applicationContext-dao.xml

applicationContext-service.xml

applicationContext-trans.xml

jdbc.properties

jdbc.driver=com.mysql.jdbc.Driverjdbc.url=jdbc:mysql://localhost:3306/crm?characterEncoding=utf-8jdbc.username=rootjdbc.password=root

log4j.properties

# Global logging configurationlog4j.rootLogger=DEBUG, stdout# Console output...log4j.appender.stdout=org.apache.log4j.ConsoleAppenderlog4j.appender.stdout.layout=org.apache.log4j.PatternLayoutlog4j.appender.stdout.layout.ConversionPattern=%5p [%t] - %m%n

springmvc.xml

web.xml

crm
index.jsp
contextConfigLocation
classpath:spring/applicationContext-*.xml
org.springframework.web.context.ContextLoaderListener
encoding
org.springframework.web.filter.CharacterEncodingFilter
encoding
UTF-8
encoding
/*
springmvc
org.springframework.web.servlet.DispatcherServlet
contextConfigLocation
classpath:spring/springmvc.xml
1
springmvc
/

转载于:https://www.cnblogs.com/setlilei/p/10629430.html

你可能感兴趣的文章
IDEA 调试 JAVA ConcurrentLinkedQueue
查看>>
P1908-逆序对
查看>>
P1192-台阶问题
查看>>
ACM模板——康托展开
查看>>
P1025-数的划分
查看>>
P1305-新二叉树
查看>>
LGTB 与大数
查看>>
[POI2009]KAM-Pebbles
查看>>
JavaScript对象
查看>>
bzoj 3696: 化合物
查看>>
LeetCode 28. Implement strStr()
查看>>
LeetCode 15. 3Sum
查看>>
第四次Scrum编码冲刺
查看>>
佛教、道教、基督教的几个问题比较
查看>>
SignalR示例demo
查看>>
ViewPager中使用PhotoView时出现pointerIndex out of range异常
查看>>
实验七——函数定义及调用总结
查看>>
apple-touch-startup-image 制作iphone web应用程序的启动画面
查看>>
Dp Hdu1421 搬寝室
查看>>
C/C++中的可变参函数
查看>>