- 浏览: 163801 次
- 性别:
- 来自: 南京
文章分类
- 全部博客 (327)
- JAVA (130)
- 工作笔记 (49)
- SQLSERVER (5)
- ORACLE (28)
- nginx (1)
- Unix C (16)
- 系统 (19)
- 网络技术 (17)
- WEB前端 (22)
- Eclipse (2)
- Tomcat (1)
- spring (7)
- MYSQL (12)
- Maven (6)
- JETTY (2)
- 设计 (2)
- 开源项目 (7)
- asterisk (0)
- C++ (2)
- WINDOWS (2)
- SCALA (0)
- 协议 (1)
- Netty (1)
- SHELL (1)
- mybaits (4)
- 并发 (2)
- 架构 (2)
- TCP/IP (8)
- 虚拟化 (3)
- 不要再说java慢 (0)
- mac (2)
- mysql乱码完美解决 (1)
最新评论
摘自ECLIPSE 帮助页
http://help.eclipse.org/helios/index.jsp?topic=/org.eclipse.jdt.doc.isv/guide/jdt_api_compile.htm
我认为有用的内容在本页最下面.
Excluding warnings using SuppressWarnings
Java 5.0 offers the option to the user to disable compilation warnings relative to a subset of a compilation unit using the annotation java.lang.SuppressWarning.
@SuppressWarning("unused") public void foo() {
String s;
}
Without the annotation, the compiler would complain that the local variable s is never used. With the annotation, the compiler silently ignores this warning locally to the foo method. This enables to keep the warnings in other locations of the same compilation unit or the same project.
The list of tokens that can be used inside an SuppressWarning annotation is:
•all to suppress all warnings
•boxing to suppress warnings relative to boxing/unboxing operations
•cast to suppress warnings relative to cast operations
•dep-ann to suppress warnings relative to deprecated annotation
•deprecation to suppress warnings relative to deprecation
•fallthrough to suppress warnings relative to missing breaks in switch statements
•finally to suppress warnings relative to finally block that don't return
•hiding to suppress warnings relative to locals that hide variable
•incomplete-switch to suppress warnings relative to missing entries in a switch statement (enum case)
•nls to suppress warnings relative to non-nls string literals
•null to suppress warnings relative to null analysis
•raw to suppress warnings relative to usage of raw types
•restriction to suppress warnings relative to usage of discouraged or forbidden references
•serial to suppress warnings relative to missing serialVersionUID field for a serializable class
•static-access to suppress warnings relative to incorrect static access
•super to suppress warnings relative to overriding a method without super invocations
•synthetic-access to suppress warnings relative to unoptimized access from inner classes
•unchecked to suppress warnings relative to unchecked operations
•unqualified-field-access to suppress warnings relative to field access unqualified
•unused to suppress warnings relative to unused code and dead code
http://help.eclipse.org/helios/index.jsp?topic=/org.eclipse.jdt.doc.isv/guide/jdt_api_compile.htm
我认为有用的内容在本页最下面.
Excluding warnings using SuppressWarnings
Java 5.0 offers the option to the user to disable compilation warnings relative to a subset of a compilation unit using the annotation java.lang.SuppressWarning.
@SuppressWarning("unused") public void foo() {
String s;
}
Without the annotation, the compiler would complain that the local variable s is never used. With the annotation, the compiler silently ignores this warning locally to the foo method. This enables to keep the warnings in other locations of the same compilation unit or the same project.
The list of tokens that can be used inside an SuppressWarning annotation is:
•all to suppress all warnings
•boxing to suppress warnings relative to boxing/unboxing operations
•cast to suppress warnings relative to cast operations
•dep-ann to suppress warnings relative to deprecated annotation
•deprecation to suppress warnings relative to deprecation
•fallthrough to suppress warnings relative to missing breaks in switch statements
•finally to suppress warnings relative to finally block that don't return
•hiding to suppress warnings relative to locals that hide variable
•incomplete-switch to suppress warnings relative to missing entries in a switch statement (enum case)
•nls to suppress warnings relative to non-nls string literals
•null to suppress warnings relative to null analysis
•raw to suppress warnings relative to usage of raw types
•restriction to suppress warnings relative to usage of discouraged or forbidden references
•serial to suppress warnings relative to missing serialVersionUID field for a serializable class
•static-access to suppress warnings relative to incorrect static access
•super to suppress warnings relative to overriding a method without super invocations
•synthetic-access to suppress warnings relative to unoptimized access from inner classes
•unchecked to suppress warnings relative to unchecked operations
•unqualified-field-access to suppress warnings relative to field access unqualified
•unused to suppress warnings relative to unused code and dead code
发表评论
-
[转]如何用消息系统避免分布式事务
2015-09-11 16:17 397http://mp.weixin.qq.com/s?__biz ... -
QQ 新浪 淘宝联合登录(转)
2015-08-11 10:53 493http://takeme.iteye.com/blog/1 ... -
Linkedin开源实时分析框架Pinot
2015-06-20 10:39 492[url]http://engineering.linkedi ... -
自增主键
2015-06-17 16:56 458http://www.cnblogs.com/heyuquan ... -
Spring-Petclinic
2015-04-04 08:27 338petclinic http://xpenxpen.itey ... -
nginx 基本配置
2015-04-03 21:31 488http://www.cnblogs.com/lost-198 ... -
日志异步化
2015-03-25 22:44 398http://www.oschina.net/translat ... -
hiberbate 包升级和oracle版本
2015-03-16 15:00 460hibernate 版本和oracle 版本的问题。 228 ... -
Maven配置本地库加载ojdbc14-10.2.0.4.0.jar文件
2015-03-16 09:46 500http://blog.sina.com.cn/s/blog_ ... -
hibernate自增主键
2015-03-14 21:11 389http://xiaowei-qi-epro-com-cn.i ... -
kafka
2015-03-10 23:21 422http://www.infoq.com/cn/news/20 ... -
c3p0 参数
2015-03-09 18:15 553http://haoran-10.iteye.com/blog ... -
网友的学习路线值得借鉴
2015-03-04 10:08 368http://blog.csdn.net/liuxiaoyi2 ... -
使用JDBC获取各数据库的Meta信息——表以及对应的列
2015-01-03 13:21 445http://blog.csdn.net/renfufei/a ... -
hadoop 在centos 64位上的编译,非常重要
2014-12-09 21:15 388http://blog.csdn.net/picassolov ... -
hbase 在虚拟机中的安装(单节点) (转)
2014-12-02 16:39 404http://www.tuicool.com/articles ... -
Spring管理多数据源
2014-11-22 12:45 314http://blog.csdn.net/lovesqcc/a ... -
Java高并发编程——为IO密集型应用设计线程数与划分任务
2014-11-22 12:29 1460http://blog.csdn.net/xichenguan ... -
netty 和nio
2014-11-16 12:38 395http://blog.csdn.net/column/det ... -
spring mvc 的几个注解
2014-11-12 19:39 405http://csjava.blog.163.com/blog ...
相关推荐
hello
默认注解:@Deprecated @Override ... 自定义注解:public @interface FirstAnno {} #@interface 元注解:加在自定义注解的类接口上 ...@Documented 这个注解可以让生成的文档,有注解的注释,默认是没有注解的注释
在Java编程中,注解(Annotation)是一种元数据,它提供了在代码中插入信息的方式,这些信息可以被编译器或运行时环境读取。反射(Reflection)是Java的一个强大特性,允许程序在运行时检查类、接口、字段和方法等...
注解和注释以及Spring和SpringMVC常用的注解 1.两者区别 注解 :参与代码编译,以@开头的。它是给应用程序看的,单独使用注解毫无意义,一定要跟工具一起使用,这个所谓的工具实际就是能读懂注解的应用程序 注释 :...
在这个特定的场景中,我们关注的是如何自定义添加注解和注释,以及自定义Mapper的实现。 首先,我们需要了解MyBatis Generator (MBG)的基本概念。MBG是一个代码生成器,它能够读取数据库表的信息,并按照预设的模板...
Java自定义注解是Java语言中的一个重要特性,它允许我们创建自己的元数据,为代码提供额外的信息。在Java中,注解(Annotation)主要用于编译器检查、代码生成、运行时处理等方面。本文将深入探讨如何通过反射机制来...
hibernate@注解方式配置实体类时,利用javadoc接口生成数据库表及字段的注释说明,支持oracle、sqlserver、db2、mysql数据库。因用到java\lib\tools.jar,需要将该jar放入工程lib下(或者tomcat\lib下、或加入...
在编程世界中,注释是源代码的重要组成部分,它们帮助开发者理解代码的功能和逻辑,尤其在团队合作中显得尤为重要。Source Insight是一款强大的源代码查看和编辑工具,深受程序员喜爱。本篇文章将详细介绍如何在...
在"Maven"环境下,我们可以轻松地集成这个插件,实现自动化代码生成,尤其对于处理带有中文注释和注解的需求,Mybatis Generator提供了很好的解决方案。 首先,我们来详细了解一下Mybatis Generator的配置过程。你...
在Java编程语言中,`@ SuppressWarnings `是一个重要的注解,用于抑制编译器发出的特定类型的警告。这个注解的使用通常是针对那些开发者认为不影响程序正常运行,但编译器出于谨慎会提示的警告。在某些情况下,避免...
首先,Eclipse的Java注释模板允许开发者预先设定一系列常用的注释格式,如类、方法、变量的注释模板。这些模板包含了如作者、创建日期、版权信息等常见元素,当需要为代码添加注释时,只需通过快捷键或者右键菜单...
在Java编程中,注释是不可或缺的一部分,它不仅有助于提高代码的可读性,也有利于团队协作和后期的维护。本篇文章将详细讲解如何在Java中给自己写的方法添加注释,以便于日后查阅和理解。 首先,我们了解Java中的三...
Eclipse作为一款流行的Java集成开发环境(IDE),提供了丰富的自定义选项,其中包括注释模板的设置。本篇文章将详细探讨如何在Eclipse中自定义注释模板,以及如何通过`eclipse.ini`配置文件来管理版权信息和团队设置...
首先,我们来看看SpringBoot AOP中的各种注解。最基础的是`@Aspect`,用于标记一个类为切面类,这个类中会包含切点(Pointcut)和通知(Advice)。切点定义了代码执行的特定位置,比如方法的执行,而通知则是在这些...
### Spring Java注解、元注解与自定义注解详解 #### 一、Java注解简介 在深入了解Spring框架中的注解应用之前,我们首先需要对Java注解有一个基本的认识。Java注解(Annotation)是一种元数据,可以为程序代码添加...
Java注解是自JDK1.5版本引入的一种元数据机制,它允许程序员在源代码的各个层次(类、方法、变量等)嵌入信息,这些信息可以被编译器或者运行时系统用来进行各种处理。注解简化了配置文件的使用,提高了代码的可读性...
4. `@SuppressWarning`: 可以抑制编译器的警告信息。 三、自定义注解 自定义注解允许开发者创建自己的元数据。定义注解使用`@interface`关键字,并可以包含元素(成员),元素可以有默认值。例如,创建一个用于标记...
在编程世界中,源代码注释是程序员为了提高代码可读性和维护性而添加的文本。它们不参与程序的执行,但对理解代码逻辑至关重要。然而,在某些特定情况下,如优化代码大小、保护知识产权或者创建混淆版本时,可能会有...
《Hibernate注解详解》 Hibernate 是一款强大的Java对象关系映射(ORM)框架,它极大地简化了数据库操作。在Hibernate中,注解是用于描述Java类及其属性如何映射到数据库表的重要工具。本文将全面解析Hibernate中的...
根据字段上的doc注释生成swagger注解 @ApiModelProperty(value = "当前登录人名称") 快捷键 ctrl+n \command+n \右键Generate 打开generate页面,选择swagger