Spring2.5 中除了提供 @Component 注释外,还定义了几个拥有特殊语义的注释,它们分别是:@Repository、@Service 和 @Controller。在目前的Spring版本中,这 3 个注释和 @Component 是等效的,但是从注释类的命名上,很容易看出这 3 个注释...
分类:
编程语言 时间:
2014-06-29 06:36:49
阅读次数:
186
第12章-Swing编程 --- 使用JFileChooser和Java7增强的JColorChooserJColorChooser用于创建颜色选择器对话框,该类的用法非常简单,该类主要提供了如下两个静态方法:-->showDialog(Component component,String titl...
分类:
编程语言 时间:
2014-06-29 00:24:58
阅读次数:
721
Spring 2.5 中除了提供 @Component 注释外,还定义了几个拥有特殊语义的注释,它们分别是:@Repository、@Service 和 @Controller。在目前的 Spring 版本中,这 3 个注释和 @Component 是等效的,但是从注释类的命名上,很容易看出这 3 ...
分类:
编程语言 时间:
2014-06-28 20:24:56
阅读次数:
261
定义(GoF《设计模式》): 将对象组合成树形结构以表示“部分整体”的层次结构。组合模式使得用户对单个对象和使用具有一致性。及角色: 1.Component 是组合中的对象声明接口,在适当的情况下,实现所有类共有接口的默认行为。声明一个接口用于访问和管理Component子部件。 2.Leaf...
分类:
编程语言 时间:
2014-06-21 12:32:15
阅读次数:
254
组合(Composite)模式:将对象组合树形结构以表示‘部分-整体’的层次结构。组合模式使得用户对单个对象和组合对象具有一致性 /* * 抽象构件(Component)角色:这是一个抽象角色,它给参与组合的对象规定一个接口。这个角色给出共有接口及其默认行为。 * 树叶构件(Lea...
分类:
其他好文 时间:
2014-06-18 18:02:36
阅读次数:
194
使用注解进行简化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
原地址:http://www.haogongju.net/art/25919361.The AnimationClip 'cube1_anim' used by the Animation component 'Cube1' must be marked as Legacy.解决方法:1. 点击“A...
分类:
其他好文 时间:
2014-06-15 09:43:53
阅读次数:
340
基于cocos2d-x的Entity-Component-System游戏架构方法,避免传统面向对象开发模式中的各种问题!!!...
分类:
其他好文 时间:
2014-06-15 09:01:45
阅读次数:
174
繁琐的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