当前位置: 首页 > 软件库 > 程序开发 > 常用工具包 >

Commons Attributes

授权协议 Apache
开发语言 Java
所属分类 程序开发、 常用工具包
软件类型 开源软件
地区 不详
投 递 者 澹台庆
操作系统 跨平台
开源组织 Apache
适用人群 未知
 软件概览

Commons Attributes enables Java programmers to use C#/.Net-style attributes in their code.

示例代码:

/**
 * Make this attribute inheritable...
 *
 * @@Inheritable()
 */
public class MyAttribute {
    private final float value;

    public MyAttribute( float value ) {
        this.value = value;
    }

    public float getValue() {
        return value;
    }
}

/**
 * Add a MyAttribute with value 0.8.
 *
 * @@MyAttribute( 0.8 )
 */
public class MyClass {
    public static void main( String[] args ) {
        System.out.println( "MyClass has the following attributes:" +
            Attributes.getAttributes( MyClass.class ) );
    }
}

  •                         Apache Commons项目简介之Attributes 0.简介 Apache Commons项目是专注于开发可重用的Java组件。 Apache Commons项目由三部分组成: Commons Proper - 可重用Java组件库。 Commons Sandbox - Java组件开发工作空间。 Commons Dormant - sand

  • 0.简介 Apache Commons项目是专注于开发可重用的Java组件。 Apache Commons项目由三部分组成: Commons Proper - 可重用Java组件库。 Commons Sandbox - Java组件开发工作空间。 Commons Dormant - sandbox中不活跃的项目存储库。 Apache Commons开发人员使每个组件尽可能少的依赖其他的lib,以便

  •    昨天用spring做了个定时器,用于定时扫描某通讯公司外网ftp服务器的约定路径下是否有我需要的文件并下载到本公司服务器上。记得以前做过类似的一个定时器,觉得手到擒来的事情,没想到又折腾了大半天,就是因为spring中commons-attributes-compiler.jar的使用问题。    问题是这样的:扫面和下载程序,触发类和函数,web.xml和spring配置文件,这些准备工作

  • web应用的war包部署到tomcat下面时有如下类似错误信息: [commons-attributes-api-2.2.jar]: Required extension [ant] not found. 这个错误会导致项目启动失败,无法访问应用。这个问题出现的原因是commons-attributes-api-2.2.jar包的MF文件存在问题导致的。如果对这个jar包没有依赖,直接删除该jar

  • 报这个错commons-attributes-compiler.jar: Required extension qdox not found怎么办? 我们使用MyEclipse开发基于Spring2.0的web应用时,如果部署应用到Tomcat可能会出现commons-attributes-compiler.jar]: Required extension qdox not found错误。如下:

相关阅读

相关文章

相关问答

相关文档