首页>代码>Spring Boot项目中实现最简单的自定义注解实例>/spring-aop-example/src/main/java/com/hellokoding/spring/LogExecutionTime.java
package com.hellokoding.spring;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface LogExecutionTime {
String name();
}
最近下载更多
xb1406112453 LV5
2020年10月21日
最代码官方 LV168
2020年10月21日

最近浏览