public class TestMyBatis {
private static Logger logger = Logger.getLogger(TestMyBatis.class);// private ApplicationContext ac = null;
@Resource
private IUserService userService = null;
// @Before// public void before() {// ac = new ClassPathXmlApplicationContext("applicationContext.xml");// userService = (IUserService) ac.getBean("userService");// }
@Test
public void test1() {
User user = userService.getUserById(1);
// System.out.println(user.getUserName());
// logger.info("值:"+user.getUserName());
logger.info(JSON.toJSONString(user));
}
}
测试结果:
文章插图
至此,完成Spring和mybatis这两大框架的整合,下面在继续进行SpringMVC的整合 。
4.3、整合SpringMVC上面已经完成了2大框架的整合,SpringMVC的配置文件单独放,然后在web.xml中配置整合 。
4.3.1、配置spring-mvc.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:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.1.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd">
<!-- 自动扫描该包,使SpringMVC认为包下用了@controller注解的类是控制器 -->
<context:component-scan base-package="com.cn.hnust.controller" />
<!--避免IE执行AJAX时,返回JSON出现下载文件 -->
<bean id="mappingJacksonHttpMessageConverter"
class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter">
<property name="supportedMediaTypes">
<list>
<value>text/html;charset=UTF-8</value>
</list>
</property>
</bean>
<!-- 启动SpringMVC的注解功能,完成请求和注解POJO的映射 -->
<bean
class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">
<property name="messageConverters">
<list>
<ref bean="
mappingJacksonHttpMessageConverter" /> <!-- JSON转换器 -->
</list>
</property>
</bean>
<!-- 定义跳转的文件的前后缀,视图模式配置-->
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<!-- 这里的配置我的理解是自动给后面action的方法return的字符串加上前缀和后缀,变成一个 可用的url地址 -->
<property name="prefix" value=https://www.isolves.com/it/cxkf/kj/2021-06-10/"/WEB-INF/jsp/" />
<property name="suffix" value=https://www.isolves.com/it/cxkf/kj/2021-06-10/".jsp" />
</bean>
<!-- 配置文件上传,如果没有使用文件上传可以不用配置,当然如果不配,那么配置文件中也不必引入上传组件包 -->
<bean id="multipartResolver"
class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
<!-- 默认编码 -->
<property name="defaultEncoding" value=https://www.isolves.com/it/cxkf/kj/2021-06-10/"utf-8" />
<!-- 文件大小最大值 -->
<property name="maxUploadSize" value=https://www.isolves.com/it/cxkf/kj/2021-06-10/"10485760000" />
<!-- 内存中的最大值 -->
<property name="maxInMemorySize" value=https://www.isolves.com/it/cxkf/kj/2021-06-10/"40960" />
</bean>
</beans>
4.3.2、配置web.xml文件这里面对spring-mybatis.xml的引入以及配置的spring-mvc的Servlet就是为了完成SSM整合,之前2框架整合不需要在此处进行任何配置 。配置一样有详细注释,不多解释了 。
web.xml
<?xml version="1.0" encoding="UTF-8"?><web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
推荐阅读
- Mockito 一个优秀的 Mock 测试框架
- 三大古佛是哪三尊佛?
- Mybatis框架实现一对多查询两种不同的实现方式
- 明朝的四大才子都是谁,明朝三大才子与四大才子
- 框架的本质分析——Spring框架
- Spring MVC 框架搭建配置方法及详解
- 台湾博物馆三大镇馆之宝是什么?
- 男子三大球是哪三个?
- 不要再封装各种Util工具类了,这个神级框架值得拥有
- 谁是三国第一猛将,三国三大猛将分别是