All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.stylefeng.roses.kernel.scanner.modular.annotation.PostResource Maven / Gradle / Ivy

There is a newer version: 2.2.13
Show newest version
/**
 * Copyright 2018-2020 stylefeng & fengshuonan ([email protected])
 * 

* Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at *

* http://www.apache.org/licenses/LICENSE-2.0 *

* Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package cn.stylefeng.roses.kernel.scanner.modular.annotation; import org.springframework.core.annotation.AliasFor; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import java.lang.annotation.*; /** * get方式请求http的资源标识 * * @author fengshuonan * @date 2018-01-03-下午2:56 */ @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) @Documented @RequestMapping(method = RequestMethod.POST) public @interface PostResource { /** *

     * 资源编码唯一标识.
     *
     * 说明:
     *     1.可不填写此注解属性.
     *     2.若不填写,则默认生成的编码标识为: 控制器类名称 + 分隔符 + 方法名称.
     *     3.若编码存在重复则系统启动异常
     *
     * 
*/ String code() default ""; /** * 资源名称(必填项) */ String name() default ""; /** * 是否是菜单(true-是菜单标识,false-不是菜单标识) */ boolean menuFlag() default false; /** * 需要登录(true-需要登录,false-不需要登录) */ boolean requiredLogin() default true; /** * 需要鉴权(true-需要鉴权,false-不需要鉴权) */ boolean requiredPermission() default true; /** * 请求路径(同RequestMapping) */ @AliasFor(annotation = RequestMapping.class) String[] path() default {}; /** * 请求的http方法(同RequestMapping) */ @AliasFor(annotation = RequestMapping.class) RequestMethod[] method() default RequestMethod.POST; }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy