码迷,mamicode.com
首页 >  
搜索关键字:annotation processor    ( 3710个结果
android调用系统相机拍照并保存在本地
import java.io.File; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.util.Calendar; import java.util.Locale; import android.annotation.Su...
分类:移动开发   时间:2014-05-07 07:09:47    阅读次数:418
java 注解
在J2EE中,注解使得开发更加便利,省去了生成XML文件的过程,在Hibernate实体声明中,可以简简单单的用几个注解就可以免去生成 一个XML的文件操作。这里就主要论述一下annotation的用法和自定义注解处理器。当在创建描述符性质的类或接口时,有大量重复性的工作时候,就 可以利用注解来.....
分类:编程语言   时间:2014-05-06 08:52:35    阅读次数:341
Struts2.X深入浅出 学习笔记
第一节、MVC以及Struts2简介 第二节、Action生命周期以及接收表单数据 第三节、Struts2配置以及Struts.xml详解 Struts2 主要配置文件 Web.xml 设置过滤器以及annotation初始化参数 Struts.xml 主配置文件 Struts.properties...
分类:其他好文   时间:2014-05-05 23:31:13    阅读次数:266
hibernate中使用Annotation
在hibernate中使用annotation非常方便我们的web开发.下面对比一下使用annotation和和不使用之间的差别吧. 首先,无论你是否使用annotation,都必须有hibernate的配置文件(hibernate.cfg.xml),这个在hibernate的自带的手册中能找到,....
分类:系统相关   时间:2014-05-05 23:15:49    阅读次数:443
Effective Java 70 Document thread safety
Every class should clearly document its thread safety properties with a carefully worded prose description or a thread safety annotation. The synchron...
分类:编程语言   时间:2014-05-05 12:00:18    阅读次数:437
Rhythmk 学习 Hibernate 07 - Hibernate annotation 实体注解
参考:http://docs.jboss.org/hibernate/annotations/3.4/reference/zh_cn/html_single/1、系统配置: 可以通过使用 mapping的 resource,于class 属性混合配置在创建SessionFactory 也可以通过代码...
分类:系统相关   时间:2014-05-03 22:50:55    阅读次数:584
Rhythmk 学习 Hibernate 08 - Hibernate annotation 关联关系注解
1、一对一 (One to One) 共三种情况: 1.1 主键共享 1.2 外键共享 1.3 中间表关联1.1 code:@Entitypublic class article { @Id @GeneratedValue public Integer getArticleId() ...
分类:系统相关   时间:2014-05-03 22:28:15    阅读次数:420
java Annotation 自定义实例
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
java Annotation原理
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
java Annotation Meta-annotations
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
3710条   上一页 1 ... 369 370 371
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!