SSM框架
SSM
weixin_44025365
这个作者很懒,什么都没留下…
展开
-
SSM整合期间遇到的问题——多重绑定
由于配置【springmvc】的时候,写了【springmvc.xml 】,里面只绑定了【springmvc.xml 】,而导致系统找不到绑定service层的bean。 项目启动的时候,解析的入口是在web.xml里面配置。 解决方法:1、将classpath:springmvc.xml => classpath:applicationContext.xml .(因为applicationContext.xml文件中导入了【springmvc.xml】、【spring-se...原创 2021-05-23 19:14:56 · 93 阅读 · 0 评论 -
SSM整合——Springmvc
1、添加web功能。 2、编写springmvc核心配置文件【springmvc.xml】 <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.sp..原创 2021-05-23 17:31:54 · 111 阅读 · 0 评论 -
ssm整合——spring
1、创建配置文件db.properties jdbc.driver=com.mysql.jdbc.Driver jdbc.url=jdbc:mysql://localhost:3306/ssmbuild jdbc.username=root jdbc.password=123456 2、编写Spring核心配置文件【Spring-dao.xml】,整合dao层 <?xml version="1.0" encoding="utf-8" ?> <beans xmlns="htt.原创 2021-05-23 17:08:23 · 58 阅读 · 0 评论 -
SSM整合——mybatis
1、pom.xml文件中进行 版本锁定、添加依赖、解决静态资源导出问题 <!-- 版本锁定 --> <properties> <spring.version>5.0.2.RELEASE</spring.version> <log4j.version>1.2.17</log4j.version> <slf4j.version>1.6.6</slf4j.versi...原创 2021-05-23 15:15:36 · 99 阅读 · 0 评论