- 浏览: 110712 次
- 性别:
- 来自: 北京
最新评论
-
leon.s.kennedy:
jixuezhiyuan 写道你连需要哪些jar包都不说,你是 ...
JUnit4入门 -
jixuezhiyuan:
你连需要哪些jar包都不说,你是只给自己看的吗?
JUnit4入门 -
coolxuhanbing:
,很有指导意义!
SQL优化总结(34条) -
yaya_wiscom:
不错写的蛮好的
SQL优化总结(34条) -
leon.s.kennedy:
sokoo108 写道hellostory 写道sokoo10 ...
Ibatis的CRUD
文章列表
Spring IOC AutoWire
- 博客分类:
- spring
自动装配:
a) byName
b) byType
c) 如果所有的bean都用同一种,可以使用beans的属性:default-autowire
<bean name="userDAO" class="com.dao.impl.UserDAOImpl"> <property name="daoId" value="1"></property> </bean> <bean name="user ...
Spring IOC 注入集合
- 博客分类:
- spring
The <list/>, <set/>, <map/>, and <props/> elements allow properties and arguments of the Java Collection type List, Set, Map, and Properties, respectively, to be defined and set.
<property name="adminEmails"> <props> <prop key="admin ...
a) singleton 单例(默认)
b) proptotype 每次创建新的对象
Bean scopes
Scope
Description
singleton
Scopes a single bean definition to a single object instance per Spring IoC container.
prototype
Scopes a single bean definition to any number of object instances.
...
Spring IOC 简单属性注入
- 博客分类:
- spring
<bean name="userDAO" class="com.dao.impl.UserDAOImpl"> <property name="daoId" value="8"></property> <property name="daoStatus" value="good"></property> </bean>
使用Spring提供的bean:注入连接池
可以用<val ...
Spring IOC id-name
- 博客分类:
- spring
<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http:// ...
使用XML进行声明式事务管理
- 博客分类:
- spring
当多个方法需要事务时,可用XML方式,表达式可灵活配置
a) xml(推荐,可以同时配置好多方法)
i. <bean txmanager
ii. <aop:config
1. <aop:pointcut
2.
Users are sometimes unsure whether a BeanFactory or an ApplicationContext is best suited for use in a particular situation. A BeanFactory pretty much just instantiates and configures beans. An ApplicationContext also does that, and it provides the supporting infrastructure to enable lots of enterp ...
Spring IOC 注入类型
- 博客分类:
- spring
注入类型
a) setter(重要)
<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schem ...
redhat中vsftp开机自启动
- 博客分类:
- Linux
有三种方法可以实现redhat中vsftpd服务开机自启动.1:在终端输入:ntsysv,这里是开机自动启动的服务选项,选中vsftpd即可.2:用vi打开etc/rc.local.在里面加入/usr/local/bin/vsftpd &即可.3:chkconfig vsftpd on (意思是所有的启动级别都会自动启动vsftpd服务)
Spring上下文Bean的生命周期
- 博客分类:
- spring
原文地址:Spring上下文Bean的生命周期作者:fe人偶尊
找工作的时候有些人会被问道Spring中Bean的生命周期,其实也就是考察一下对Spring是否熟悉,工作中很少用到其中的内容,那我们简单看一下。
在说明前可 ...
转自http://program-think.blogspot.com/2009/02/study-technology-in-three-steps.html
最近几天有些网友在邮件里面问我关于学习的问题。有好几个人觉得工作了几年,也学会了不少的类库、框架、甚至语言,但是感觉自己的能力没有太大的提高。因此今天来说一下我个人对这方面的体会,希望对大伙儿(尤其是新手)有帮助。 先声明一下,本帖子讨论的三部曲是指你已经选定了某个技术方向之后,该如何学习;至于如何选定技术方向,则属于另一个话题,不在今天的讨论之列。 我把学习归类为三个步骤:What、How、Why。经过我对周围同事和朋友的 ...
转载http://program-think.blogspot.com/2009/02/from-surface-to-essence.html
最近看到一个汽车对冰淇淋过敏的小故事(原文在此),转述如下: 某汽车公司收到投诉信,用户抱怨了一个匪夷所思的经历:他每晚都从家里
转自:http://blog.csdn.net/program_think/article/details/3871535
我估计看我博客的人里面,应该有很多人听说过二八原理(如果你之前从来没听说过,那你的知识面有太窄的嫌疑)。但是知道二八原理的人有很多却不会(或 者不善于)运用。直接的后果就是你在各种事情上付出了很多时间与精力,但是回报却很少。鉴于该原理非常非常的实用,我打算专门写一个系列来聊聊和它相关的 话题。 ★什么是二八原理 按照惯例,先说说什么是二八原理(如果你已经知道二八原理,可以跳过这部分)。二八原理(又名80/20原理、帕雷托原理)最早是由意大利的经济学家帕雷托提出来的,具 ...
Linux下允许root用户通过FTP上传文件
- 博客分类:
- Linux
修改2个文件:/etc/vsftpd.ftpusers和:/etc/vsftpd.user_list 中的内容,将root注释即可。
一般情况下,应该禁止root进行ftp上传,因为ftp中的root密码和linux的密码一般是同一个
另外ftp允许匿名登录是在/etc/vsftpd/vsftpd.conf文件中定义:
anonymous_enable=TRUE
默认设置为true,允许匿名登录
修改linux系统默认启动级别
- 博客分类:
- Linux
修改系统启动级别:修改系统默认启动到3 多用户状态在Linux中有7种启动级别,默认是X-Window,像是Windows的窗口模式,而Linux的操作和配置一般我们都采用输入命令的方式来完成,像DOS操作系统一样,如何让Linux一启动就进入这种模式呢?以管理员身份进入Linux,修改文件:/etc/inittab文件找到“id:5:initdefault:”,其中的5就是X-Window,为默认运行级别,我们把5改为3即可。一共有7种启动级别,分别为:#