mybatis配置文件SqlMapConfig.xml spring配置文件applicationContext.xml springmvc配置文件springmvc.xml ...
分类:
其他好文 时间:
2019-09-13 21:45:43
阅读次数:
93
SSM框架整合 pom中添加依赖 添加编辑Spring配置文件 添加编辑SpringMVC配置文件 添加编辑Mybatis配置文件 配置web.xml 1、pom中添加依赖 2、添加编辑Spring配置文件 3、添加编辑SpringMVC配置文件 4、添加配置Mybatis配置文件 5、配置Web. ...
分类:
其他好文 时间:
2019-09-06 22:57:57
阅读次数:
78
springmvc大大减少了对xml的配置,减少了配置量,以及可以在一个controller类中进行多个请求配置 一、springmvc配置 context:component-scan 开启包扫描,对指定的包进行注解扫描 mvc:annotation-driven开启注解功能 二、controll ...
分类:
编程语言 时间:
2019-09-03 00:08:36
阅读次数:
110
<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
分类:
编程语言 时间:
2019-08-17 20:22:26
阅读次数:
133
<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
分类:
编程语言 时间:
2019-08-16 13:15:27
阅读次数:
103
加入依赖 web.xml 在web.xml中注册shiro过滤器 shiro的配置可以添加在spring的配置文件中。但是为了便于管理我们再单独创建一个shiro的配置文件,里面的Schema还是spring的。 shiro的配置文件 Spring配置文件 SpringMVC配置文件 Mybatis ...
分类:
其他好文 时间:
2019-07-17 20:24:18
阅读次数:
113
1、导入需要用到的jar包 2、数据库连接配置(jdbc.properties) 3、打印日志配置(可不要:log4j.properties【名字必须为这个】) 4、Spring+MyBatis的集成配置(applicationContext.xml) 5、SpringMVC配置(applicati ...
分类:
编程语言 时间:
2019-07-17 12:40:47
阅读次数:
141
访问路径:ip/项目名称/接口地址 访问路径会受到springmvc配置的影响:如下面这个就要加上unifyapi这个路径,那为什么要加上项目名字呢,一方面在ideal部署的的时候,deployment配置的时候会默认配置写的有项目名称,如果只写“/”,则访问时不需要加项目名称,如下。另一个情况就是 ...
分类:
其他好文 时间:
2019-07-02 21:22:59
阅读次数:
278
1:web.xml:web应用一经加载,先来找他 1):指明applicationContext的位置 2):引入spring监听,ContextLoaderListener,这样启动web容器时,会自动装配applicaiontContext的配置信息 3):配置springmvc的前端控制器Di ...
分类:
编程语言 时间:
2019-06-20 12:29:06
阅读次数:
100