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

com.github.lit.support.web.annotation.ViewName Maven / Gradle / Ivy

package com.github.lit.support.web.annotation;

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

/**
 * User : liulu
 * Date : 2018/3/1 16:29
 * version $Id: ViewName.java, v 0.1 Exp $
 */
@Target({ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
public @interface ViewName {

    String value();

    /**
     * 是否是spring el 表达式
     *
     * @return boolean
     */
    boolean spel() default false;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy