使用注解进行简化aop的配置
切点是run方法
Car.java
package com.lubby.bean;
import org.springframework.stereotype.Component;
@Component("car")
public class Car {
public void run(){
System.out.println("Car i...
分类:
编程语言 时间:
2014-06-18 12:17:12
阅读次数:
269
1.添加JAR包,出了Spring自身的Jar包还要一些依赖的JAR包,不然会报ClassNotFound。
Student.java
package com.lubby.bean;
import org.springframework.stereotype.Component;
@Component("student")
public class Student {
private ...
分类:
编程语言 时间:
2014-06-18 11:57:51
阅读次数:
176
源码学习第一天:
org.springframework.beans 和org.springframework.context 包是ioc 容器的基础包。
BeanFactory 接口 :负责通过配置机制管理任何类型对象。
ApplicationContext 接口: 继承BeanFactory
可以和aop ,消息资源处理(国际化),事件发布集成。
webApplicat...
分类:
编程语言 时间:
2014-06-18 07:59:23
阅读次数:
195
在练习spring项目的过程中,出现了如下异常信息:
Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/commons/logging/LogFactory
at org.springframework.context.support.AbstractApplicationContext.(Abstrac...
分类:
编程语言 时间:
2014-06-18 07:15:20
阅读次数:
236
spring集成quartz
注意:出现异常“Caused by: java.lang.IncompatibleClassChangeError: class org.springframework.scheduling.quartz.CronTriggerBean has interface org.quartz.CronTrigger as super class”
Spring3.0不支...
分类:
编程语言 时间:
2014-06-18 07:13:22
阅读次数:
498
依赖坐标与本地仓库存储
org.springframework
spring-core
3.0.7.RELEASE
本地仓库存储
仓库分类:
本地仓库:
F:\maven\repos
中央仓库
...
分类:
其他好文 时间:
2014-06-18 06:27:57
阅读次数:
312
Exception in thread "main" org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'articleDaoImpl': Injection of resou...
分类:
移动开发 时间:
2014-06-18 00:10:10
阅读次数:
923
例子是利用spring的org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean类,能够创建任务,创建任务的时间间隔,开启。分四步:1、定义自己的bean<beanid="AuditTimeoutTimer"class="*****.TimeoutWarningTimer"></bean>2、定义任务,任务..
分类:
编程语言 时间:
2014-06-16 15:52:53
阅读次数:
247
1,Tomcat启动报错如下:Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'memcachedClient' defined in
file [/usr/local/apache-tomcat-6.0.37_6500/webapps/trade...
分类:
编程语言 时间:
2014-06-15 14:12:10
阅读次数:
283
繁琐的xml配置有时候让人感到烦躁,而Spring支持的注解配置简化了bean的配置。
所以spring可以使用annotation进行主动注入以及自动检测bean。
Course类
package com.lubby.test;
import org.springframework.stereotype.Component;
@Component
publ...
分类:
编程语言 时间:
2014-06-14 13:19:13
阅读次数:
283