博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SpringMVC和Mybatis整合使用的配置文件
阅读量:3891 次
发布时间:2019-05-23

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

dao.xml

service.xml

spring-servlet.xml

applicationContext.xml

Mybatis-config.xml

database.properties

jdbc.Driver=com.mysql.jdbc.Driverjdbc.url=jdbc:mysql://localhost:3306/springandmybatis?useSSL=true&useUnicode=true&characterEncoding=utf-8jdbc.username=rootjdbc.password=123456

wen.xml

books
org.springframework.web.servlet.DispatcherServlet
contextConfigLocation
classpath:applicationContext.xml
1
books
/
encoding
org.springframework.web.filter.CharacterEncodingFilter
encoding
utf-8
encoding
/*

pom.xml

4.0.0
com.baidu
springAndMybatis
1.0-SNAPSHOT
war
springAndMybatis Maven Webapp
http://www.example.com
UTF-8
1.7
1.7
junit
junit
4.11
test
mysql
mysql-connector-java
5.1.47
org.mybatis
mybatis
3.4.6
org.springframework
spring-webmvc
4.3.24.RELEASE
org.springframework
spring-jdbc
4.3.18.RELEASE
javax.servlet
javax.servlet-api
3.1.0
provided
com.mchange
c3p0
0.9.5.2
javax.servlet.jsp
jsp-api
2.2
provided
javax.servlet.jsp.jstl
jstl
1.2
org.mybatis
mybatis-spring
1.3.2
src/main/java
**/*.xml
false
src/main/resources
**/*.xml
**/*.properties
false
springAndMybatis
maven-clean-plugin
3.1.0
maven-resources-plugin
3.0.2
maven-compiler-plugin
3.8.0
maven-surefire-plugin
2.22.1
maven-war-plugin
3.2.2
maven-install-plugin
2.5.2
maven-deploy-plugin
2.8.2

转载地址:http://mhohn.baihongyu.com/

你可能感兴趣的文章
C++中map、hash_map、unordered_map、unordered_set通俗辨析
查看>>
clone的fork与pthread_create创建线程有何不同&pthread多线程编程的学习小结
查看>>
运算符重载参数的顺序对运算是否有影响
查看>>
什么时候要用虚析构函数?
查看>>
序列化、反序列化与jsoncpp学习
查看>>
同步/异步与阻塞非阻塞的关系
查看>>
epoll模型讲解/源码分析
查看>>
ELF格式与bss段
查看>>
java继承 long和float小记点
查看>>
记录几点在开发中遇到的问题 2015-7-28 (会更新)
查看>>
网银在线的异步操作代码示意图
查看>>
火狐Firefox浏览器安装Selenium_IDE的步骤以及其使用规则
查看>>
记录运行代码的时间长短
查看>>
关于yii2的一些知识的学习笔述
查看>>
用纯php实现MVC框架,文件目录模仿yii2
查看>>
新开发的体重管理项目----用纯php模仿yii2框架建立的
查看>>
JavaScript面向对象编程指南 的笔记
查看>>
在 2016 年做 PHP 开发是一种什么样的体验?(一)
查看>>
PHP获取客户端的IP
查看>>
从头开始学习yii2---1.搭建yii2开发环境
查看>>