1 国际化org.springframework.web.servlet.i18n.SessionLocaleResolver
    http://blog.csdn.net/kcai678/article/details/5403745
2 在spring框架下文件上传org.springframework.web.multipart.commons.CommonsMultipartResolver
    http://www.cnblogs.com/xuqiang/archive/2010/11/10/1953407.html
3 servlet  :只执行一个,web.xml
  filter  :针对url,执行多个,web.xml
  interceptor:struts针对action,执行多个,struts.xml or springmvc的mvc:interceptors
  listener   :而listener是针对对象的操作的,eg.servletContext修改或者session创建及修改
4 org.springframework.web.util.IntrospectorCleanupListener
  http://www.blogjava.net/landor2004/archive/2009/11/26/303782.html
  如果有的框架或者程序用到了JavaBeans Introspector了,那么就启用了一个系统级别的缓存,
  垃圾回收器不能对web容器中的javaBean对象进行回收,导致内存越来越大。

5 spring单例
    每次想从spring容器中得到一个bean的不同实例,需要将bean定义为原型模式,定义为原型模式意味着你是定义一个bean的类,
而不是一个单一的bean的实例,bean的实例都是按照这个类而创建的。想使用spring的原型bean必须通过getBean(”test”)这样的方式,
配置bean为singleton=”false”或者scope=”prototype”。
getBean将每次都有spring来装配转发,而IOC将只是一次注入的目标bean中,以后不再重新注入

6 方法注入  为单例对象中调用非单例对象实现的
  http://hi.baidu.com/coolcooldool/item/afa3e9dcd1be3c52d63aae80
  http://jiangshuiy.iteye.com/blog/1667316

7 spring 加载实例及连接池

ApplicationContext context=new FileSystemXmlApplicationContext("classpath:beans.xml");

IProductService productService = (IProductService) context.getBean("CServiceImpl");

WebApplicationContext context = ContextLoader.getCurrentWebApplicationContext();

8 spring 控制乱码 CharacterEncodingFilter filter

9 基于spring的单元测试
  http://zhc3191012.blog.163.com/blog/static/18555337620126272422115/
  http://yangblog.iteye.com/blog/964369
  http://blog.csdn.net/wangjian5748/article/details/1199549

来自:http://www.cnblogs.com/ai464068163/archive/2013/04/15/3022384.html

spring相关记录的更多相关文章

  1. 我的Spring学习记录(四)

    虽然Spring管理这我们的Bean很方便,但是,我们需要使用xml配置大量的Bean信息,告诉Spring我们要干嘛,这还是挺烦的,毕竟当我们的Bean随之增多的话,xml的各种配置会让人很头疼. ...

  2. Spring 学习记录3 ConversionService

    ConversionService与Environment的关系 通过之前的学习(Spring 学习记录2 Environment),我已经Environment主要是负责解析properties和p ...

  3. Spring 学习记录8 初识XmlWebApplicationContext(2)

    主题 接上文Spring 学习记录7 初识XmlWebApplicationContext refresh方法 refresh方法是定义在父类AbstractApplicationContext中的. ...

  4. Spring 学习记录6 BeanFactory(2)

    主题 除了Spring 学习记录5 BeanFactory 里写的几个接口外,BeanFactory的实现类还实现了一些其他接口,这篇文章主要介绍这些接口和实现类. 结构 DefaultListabl ...

  5. [Android学习笔记]理解焦点处理原理的相关记录

    焦点处理相关记录 以下所涉及的焦点部分,只是按键移动部分,不明确包含Touch Focus部分 需解决问题 控件的下一个焦点是哪? 分析思路 当用户通过按键(遥控器等)触发焦点切换时,事件指令会通过底 ...

  6. 我的Spring学习记录(二)

    本篇就简单的说一下Bean的装配和AOP 本篇的项目是在上一篇我的Spring学习记录(一) 中项目的基础上进行开发的 1. 使用setter方法和构造方法装配Bean 1.1 前期准备 使用sett ...

  7. 我的Spring学习记录(五)

    在我的Spring学习记录(四)中使用了注解的方式对前面三篇做了总结.而这次,使用了用户登录及注册来对于本人前面四篇做一个应用案例,希望通过这个来对于我们的Spring的使用有一定的了解. 1. 程序 ...

  8. 关于视觉跟踪中评价标准的相关记录(The Evaluation of Visual Tracking Results on OTB-100 Dataset)

    关于视觉跟踪中评价标准的相关记录(The Evaluation of Visual Tracking Results on OTB-100 Dataset) 2018-01-22  21:49:17 ...

  9. Spring 学习记录7 初识XmlWebApplicationContext

    主题 之前Spring相关的一些类,比如Enviromnent,BenFactory都接触了一些.有一些收获.但是直接看代码很多方法都不知为什么这样写.哪里会用到.因为太底层了.不好理解..现在从高层 ...

随机推荐

  1. [ARC053D]2 つの山札

    题意:给定排列$a_{1\cdots n},b_{1\cdots n}$,执行以下操作$2n-2$次来生成一个长度为$2n-2$的序列:选择$a,b$之一(选择的序列长度要$\geq2$),删除它的第 ...

  2. NTFS ADS带来的web安全问题

    有关ADS的简单说明请看http://www.xfocus.net/articles/200212/466.html 可以看到ADS在很久以前就被一些安全人员所关注,并且也提出了一些经典的利用,比如隐 ...

  3. poj 1456 贪心+STL

    题意:有n个商品,每个商品如果能在截止日期之前售出就会获得相应利益,求能获得的最大利益 一开始对每个时间进行贪心,后来发现后面的商品可以放到之前来卖,然后就wa了 这里就直接对价格排序,把物品尽量放到 ...

  4. Python turtle绘图实例分析

    画一个红色的五角星 from turtle import * color('red','red') begin_fill() for i in range(5): fd(200) rt(144) en ...

  5. POJ 2774 Long Long Message 后缀数组模板题

    题意 给定字符串A.B,求其最长公共子串 后缀数组模板题,求出height数组,判断sa[i]与sa[i-1]是否分属字符串A.B,统计答案即可. #include <cstdio> #i ...

  6. Educational Codeforces Round 10 D. Nested Segments 离线树状数组 离散化

    D. Nested Segments 题目连接: http://www.codeforces.com/contest/652/problem/D Description You are given n ...

  7. 最新iOS砸壳方式Frida (Mac OSX)

    1. 安装Frida 首先需要安装Python3,我下载的是 macOS 64-bit installer 安装,因Macbook本机自带python为2.7.x,故需要配置~/.bash_profi ...

  8. Lower dc/dc-converter ripple by using optimum capacitor hookup

    Low-ripple-voltage positive-to-negative dc/dc converters find use in many of today's high- frequency ...

  9. MemoryModule -- load a DLL completely from memory

    https://github.com/fancycode/MemoryModule MemoryModule is a library that can be used to load a DLL c ...

  10. TCP/IP具体解释--TCP/UDP优化设置总结&amp; MTU的相关介绍

    首先要看TCP/IP协议,涉及到四层:链路层,网络层.传输层,应用层. 当中以太网(Ethernet)的数据帧在链路层 IP包在网络层 TCP或UDP包在传输层 TCP或UDP中的数据(Data)在应 ...