Skip to content

Commit

Permalink
feat(Service) : annotation Service 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
mjj111 committed May 20, 2024
1 parent b3baa70 commit 302e3a6
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/main/java/spring/mvc/annotation/Service.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package spring.mvc.annotation;

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

@Target({ ElementType.TYPE })
@Retention(RetentionPolicy.RUNTIME)
public @interface Service {
String value() default "";
}

0 comments on commit 302e3a6

Please sign in to comment.