在J2EE中,注解使得开发更加便利,省去了生成XML文件的过程,在Hibernate实体声明中,可以简简单单的用几个注解就可以免去生成
一个XML的文件操作。这里就主要论述一下annotation的用法和自定义注解处理器。当在创建描述符性质的类或接口时,有大量重复性的工作时候,就
可以利用注解来.....
分类:
编程语言 时间:
2014-05-06 08:52:35
阅读次数:
341
第一节、MVC以及Struts2简介 第二节、Action生命周期以及接收表单数据
第三节、Struts2配置以及Struts.xml详解 Struts2 主要配置文件 Web.xml 设置过滤器以及annotation初始化参数
Struts.xml 主配置文件 Struts.properties...
分类:
其他好文 时间:
2014-05-05 23:31:13
阅读次数:
266
在hibernate中使用annotation非常方便我们的web开发.下面对比一下使用annotation和和不使用之间的差别吧. 首先,无论你是否使用annotation,都必须有hibernate的配置文件(hibernate.cfg.xml),这个在hibernate的自带的手册中能找到,....
分类:
系统相关 时间:
2014-05-05 23:15:49
阅读次数:
443
Defining annotations
Here is the definition of the annotation above. You can see that annotation definitions look a lot like interface definitions.
In fact, they compile to class files like any oth...
分类:
编程语言 时间:
2014-04-27 21:47:05
阅读次数:
348
Annotations are one of the fundamental language changes
introduced in Java SE5. They provide information that you need to fully describe your program, but that cannot be expressed in Java. Thus, anno...
分类:
编程语言 时间:
2014-04-27 21:14:59
阅读次数:
431
Meta-annotations
@Target
CONSTRUCTOR: Constructor declarationFIELD: Field declaration (includes enum constants) LOCAL_VARIABLE: Local variable declaration METHOD: Method declarationPACKAGE: Pack...
分类:
编程语言 时间:
2014-04-27 21:12:04
阅读次数:
385