摘要:
从前面我们知道spring其实就是一个大型的工厂,而Spring容器中的Bean就是该工厂的产品.对于Spring容器能够生产那些产品,则取决于配置文件中配置。 对于我们而言,我们使用Spring框架所做的就是两件事:开发Bean、配置Bean。对于Spring矿建来说,它要做的就是根据配置文件来创 阅读全文
摘要:
1、@Autowired与@Resource都可以用来装配bean. 都可以写在字段上,或写在setter方法上。 2、@Autowired默认按类型装配(这个注解是属业spring的),默认情况下必须要求依赖对象必须存在,如果要允许null 值,可以设置它的required属性为false,如:@ 阅读全文
摘要:
官方文档 翻译 https://waylau.gitbooks.io/spring-framework-4-reference/content/III.%20Core%20Technologies/Container%20overview.html 这个更全一些 http://spring.cndo 阅读全文
摘要:
org.springframework.web.context.ContextLoaderListener ContextLoaderListener的作用就是启动Web容器时,自动装配ApplicationContext的配置信息。因为它实现了ServletContextListener这个接口, 阅读全文
摘要:
详细整合教程(Spring+SpringMVC+MyBatis) http://blog.csdn.net/gebitan505/article/details/44455235/ 阅读全文
摘要:
intellJ idea 中使用创建maven工程 File-->New Project, 左侧选择Maven,勾选Create from archetype,选择 quickstart 点击next,输入GroupId和Artifactid,点击Next,增加archetypeCatalog,in 阅读全文
摘要:
可以参考http://www.openwebx.org/docs/autoconfig.html 1.pom.xml <!-- 不同的打包环境配置: test=开发/测试测试环境, product=生产环境; 命令行方式: mvn clean install -Dmaven.test.skip=tr 阅读全文
摘要:
命令是 :set fileencoding=utf-8如果用vim打开文件时里面有乱码,可能用上面的命令修改文件后无法保存。可以用其他软件打开文件,然后把内容拷贝到vim里再保存就行了。 阅读全文
摘要:
http://jinnianshilongnian.iteye.com/blog/1752171 阅读全文
摘要:
osscmd是基于python 2.5.4(其他版本没有试过),用来操作OSS的,可使用命令行来上传和下载文件。 下载地址:http://storage.aliyun.com/leo/osscmd.tar.gz 使用方法: 1. 下载到某一目录,例如下载到/tmp/ 目录 请先确认机器上安装了pyt 阅读全文