javaweb快速开发框架


javaweb快速开发框架
资源截图
代码片段和文件信息
package com.iisquare.core.annotation;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Documented // 该注解将被包含在JavaDoc中
@Target({ // 应用对象
ElementType.TYPE // 类(接口、类、枚举、注解)
ElementType.METHOD // 方法
})
@Retention(RetentionPolicy.RUNTIME) // 注解会在class字节码文件中存在,在运行时可以通过反射获取到
@Inherited // 子类可以继承父类中的该注解
public @interface Permit {
public String name() default ““; // 名称
public String quote() default ““; // 引用同一控制器下的其他方法的权限配置
public boolean available() default true; // 启用权限验证
public boolean configurable() default true; // 在权限配置中显示该项
public boolean visible() default true; // 在全局菜单中显示该项
// 由于图标配置具有较大的自主性和不确定性,此处没有提供该项支持
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       5670  2018-05-21 16:38  oa.classpath

    .......       315  2013-12-10 10:30  oa.mymetadata

    .......      1745  2013-11-15 18:40  oa.project

    .......       500  2013-11-18 11:42  oa.settings.jsdtscope

    .......      1040  2013-11-18 11:42  oa.settingscom.genuitec.eclipse.j2eedt.core.prefs

     文件        247  2018-05-21 16:38  oa.settingscom.genuitec.eclipse.migration.prefs

     文件        144  2018-05-21 16:45  oa.settingsorg.eclipse.core.resources.prefs

     文件        598  2018-05-21 16:40  oa.settingsorg.eclipse.jdt.core.prefs

     文件        881  2018-05-21 16:38  oa.settingsorg.eclipse.wst.common.component

     文件        345  2018-05-21 16:38  oa.settingsorg.eclipse.wst.common.project.facet.core.xml

    .......        49  2013-11-18 11:42  oa.settingsorg.eclipse.wst.jsdt.ui.superType.container

    .......         6  2013-11-18 11:42  oa.settingsorg.eclipse.wst.jsdt.ui.superType.name

     文件         25  2018-05-21 16:38  oasrcmeta-INFMANIFEST.MF

    .......       348  2013-11-18 11:53  oasrc
esourcesconfig.properties

     文件        430  2018-05-23 11:28  oasrc
esourcesjdbc.properties

    .......        79  2013-11-15 18:38  oasrc
esourceslogcommons-loggingproperties.properties

    .......       498  2013-11-15 18:38  oasrc
esourcesloglog4j.properties

    .......      4653  2013-11-15 18:38  oasrc
esourcesspringapplicationContext.xml

    .......      2687  2013-11-25 11:21  oasrc
esourcesstrutsstruts-controller.xml

     文件        590  2018-05-23 11:39  oasrc
esourcesstrutsstruts-develop.xml

    .......       324  2013-11-15 18:38  oasrc
esourcesstrutsstruts.xml

    .......      1128  2013-11-15 18:34  oasrc_corecomiisquarecoreannotationPermit.java

    .......     15277  2013-11-25 13:46  oasrc_corecomiisquarecorecomponentCController.java

    .......       554  2013-11-25 13:40  oasrc_framecomiisquareframeexceptionCodeExpiredException.java

    .......       504  2013-11-25 13:40  oasrc_framecomiisquareframeexceptionNoLoginException.java

    .......       532  2013-11-25 13:40  oasrc_framecomiisquareframeexceptionPermitDeniedException.java

    .......       602  2013-11-15 18:38  oasrc_framecomiisquareframefreemarkerEmptyFreemarkerModel.java

    .......       514  2013-11-15 18:38  oasrc_framecomiisquareframefreemarkerEscapeHtmlFreemarkerModel.java

    .......       810  2013-11-15 18:38  oasrc_framecomiisquareframefreemarkerLoadSkinResourceFreemarkerModel.java

    .......       750  2013-11-15 18:38  oasrc_framecomiisquareframefreemarkerMillisToDateTimeFreemarkerModel.java

............此处省略921个文件信息

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件举报,一经查实,本站将立刻删除。

发表评论

评论列表(条)