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

com.suchtool.nicelog.annotation.NiceLogOperation Maven / Gradle / Ivy

The newest version!
package com.suchtool.nicelog.annotation;

import java.lang.annotation.*;

@Target({ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface NiceLogOperation {
    /**
     * 指定方法的tag
     */
    String value() default "";

    /**
     * 指定业务单号(SpEL)
     * 

如果参数是对象,这样写:#对象名.字段名,例如:#user.userName

*

如果参数不是对象,这样写:#字段名。例如:#orderNo

*/ String businessNoSpEL() default ""; }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy