整合Junit

  • 导入jar包
    基本 :4+1
    测试:spring-test-5.1.3.RELEASE.jar
  1. 让Junit通知spring加载配置文件
  2. 让spring容器自动进行注入
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    import org.junit.Test;
    import org.junit.runner.RunWith;
    import org.springframework.beans.factory.annotation.Autowired;
    import org.springframework.test.context.ContextConfiguration;
    import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
    (SpringJUnit4ClassRunner.class)
    @ContextConfiguration(locations="classpath:applicationContext.xml")
    public class {
    @Autowired
    private AccountService accountService;
    @Test
    public void demo() {
    accountService.transfer("jack", "rose", 1000);
    }
    }

整合web

  • 导入jar
    spring-web-5.1.3.RELEASE.jar
  1. tomcat启动加载配置文件
    servlet –> init(ServletConfig) –> 2
    filter –> init(FilterConfig) –> web.xml注册过滤器自动调用初始化
    listener –> ServletContextListener –> servletContext对象监听【】
    spring提供监听器 ContextLoaderListener –> web.xml 大专栏  spring入门-整合junit和webtener>….

    如果只配置监听器,默认加载xml位置:/WEB-INF/applicationContext.xml
  2. 确定配置文件位置,通过系统初始化参数
    ServletContext 初始化参数 web.xml

    <context-param>
    <param-name>contextConfigLocation
    <param-value>classpath:applicationContext.xml

代码

  1. 修改web.xml

    1
    2
    3
    4
    5
    6
    7
    <context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath:applicationContext.xml</param-value>
    </context-param>
    <listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>
  2. servlet中调用

    1
    2
    3
    4
    5
    // 从application作用域(ServletContext)获得spring容器
    //方式1: 手动从作用域获取
    ApplicationContext applicationContext = (ApplicationContext) this.getServletContext().getAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE);
    //方式2:通过工具获取
    ApplicationContext apppApplicationContext2 = WebApplicationContextUtils.getWebApplicationContext(this.getServletContext());

最新文章

  1. c#操作xml文件(XmlDocument,XmlTextReader,Linq To Xml)
  2. DataSet集合直接根据传入的类转List&lt;T&gt;集合
  3. httpclient+Jsoup总结
  4. WebClient上传音频文件
  5. NABCD分析
  6. asp.net中Respons.Write()的用法
  7. C#关于编码、解码相关问题
  8. jquery 鼠标图片经过效果
  9. .net C# 苹果消息推送 工具类
  10. Linux笔记(十三) - 系统管理
  11. Python 基础之 异常处理
  12. 使用jquery的方法和技巧2,点击多选框的jquery响应
  13. 多节点通过PPP连接,节点/用户/客户机之间互相访问ping
  14. Mac通过type-c接口无法识别移动硬盘
  15. UESTC - 1172 三句话题意
  16. BTrace使用简介
  17. LeetCode 897 Increasing Order Search Tree 解题报告
  18. c# double 类型保留几位小数
  19. [转载]AngularJS 开发者最常犯的 10 个错误
  20. Docker深入浅出2

热门文章

  1. Collection接口介绍
  2. org.springframework.web.util.UriComponentsBuilder
  3. 吴裕雄--天生自然TensorFlow高层封装:Keras-RNN
  4. grep -v|grep -F
  5. Java快速输入输出
  6. 洛谷-P5357-【模板】AC自动机(二次加强版)
  7. 闭包,协议delegate
  8. 28)PHP,数据库连接类
  9. 传输层TCP和UDP
  10. vue2.0学习之基础内容