Java注解是附加在代码中的一些元信息,用于一些工具在编译、运行时进行解析和使用,起到说明、配置的功能。 注解相关类都包含在java.lang.annotation包中。
JDK基本注解
JDK元注解
自定义注解
@Override
重写
@SuppressWarnings(value = “unchecked”)
压制编辑器警告
@Retention:定义注解的保留策略
@Retention(RetentionPolicy.SOURCE) //注解仅存在于源码中,在class字节码文件中不包含
@Retention(RetentionPolicy.CLASS) //默认的保留策略,注解会在class字节码文件中存在,但运行时无法获得,
@Retention(RetentionPolicy.RUNTIME) //注解会在class字节码文件中存在,在运行时可以通过反射获取到
@Target:指定被修饰的Annotation可以放置的位置(被修饰的目标)
@Target(ElementType.TYPE) //接口、类
@Target(ElementType.FIELD) //属性
@Target(ElementType.METHOD) //方法
@Target(ElementType.PARAMETER) //方法参数
@Target(ElementType.CONSTRUCTOR) //构造函数
@Target(ElementType.LOCAL_VARIABLE) //局部变量
@Target(ElementType.ANNOTATION_TYPE) //注解
@Target(ElementType.PACKAGE) //包
注:可以指定多个位置,例如:
@Target({ElementType.METHOD, ElementType.TYPE}),也就是此注解可以在方法和类上面使用
@Inherited:指定被修饰的Annotation将具有继承性
@Documented:指定被修饰的该Annotation可以被javadoc工具提取成文档.
注解分类(根据Annotation是否包含成员变量,可以把Annotation分为两类):
标记Annotation:
没有成员变量的Annotation; 这种Annotation仅利用自身的存在与否来提供信息
元数据Annotation:
包含成员变量的Annotation; 它们可以接受(和提供)更多的元数据;
使用@interface关键字, 其定义过程与定义接口非常类似, 需要注意的是:
Annotation的成员变量在Annotation定义中是以无参的方法形式来声明的, 其方法名和返回值类型定义了该成员变量的名字和类型,
而且我们还可以使用default关键字为这个成员变量设定默认值;
注解类
package com.zking.ssm.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* MyAnnotation1注解可以用在类、接口、属性、方法上
* * 注解运行期也保留
* * 不可继承
*/
@Target({ElementType.TYPE,ElementType.METHOD,ElementType.FIELD})
@Retention(RetentionPolicy.SOURCE)
public @interface MyAnnotation1 {
// @interface 注解修饰符
// 指的是注解中的属性
public String value() default "可以修饰类和属性、方法";
public String desc() default "可以修饰类和属性、方法";
}
使用注解类
package com.zking.ssm.annotation;
/**
* @author javaxy
* @company xxx公司
* @create 2022-11-17 9:18
*/
// value如果标记在属性上面可以省略
@MyAnnotation1(desc = "标记在类上面")
public class StudentController {
@MyAnnotation1( "标记在属性id上面")
private String id;
@MyAnnotation1( "标记在属性name上面")
private String name;
@MyAnnotation1
public void test1(@MyAnnotation2("用来修饰id参数") String id,@MyAnnotation2("用来修饰参数name") String name){
System.out.println("测试1");
}
}
注解类2
package com.zking.ssm.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Target({ElementType.PARAMETER})
@Retention(RetentionPolicy.SOURCE)
public @interface MyAnnotation2 {
// @interface 注解修饰符
// 指的是注解中的属性
public String value() default "可以修饰类和属性、方法";
public String desc() default "可以修饰类和属性、方法";
}
获取自定义注解中的类容
package com.zking.ssm.annotation.demo;
import com.zking.ssm.annotation.MyAnnotation1;
import com.zking.ssm.annotation.StudentController;
/**
* @author javaxy
* @company xxx公司
* @create 2022-11-17 9:30
*
* 目标:
* 1.获取studentcontroller 类上自定义注解中的类容
* 2.获取studentcontroller 方法上自定义注解中的类容
* 3. 获取studentcontroller 属性上自定义注解中的类容
* 4.获取studentcontroller 参数上自定义注解中的类容
*
* *.Service.Pager(..)
* com.yzp.service.BookService.queryPager(..);
*
*/
public class Demo1 {
public static void main(String[] args) {
MyAnnotation1 annotation = StudentController.class.getAnnotation(MyAnnotation1.class);
System.out.println(annotation.desc());
System.out.println(annotation.value());
}
}
如果现在你现在直接运行代码会报错
如果要运行代码我们需要将这个@Retention(RetentionPolicy.SOURCE)改成
@Retention(RetentionPolicy.RUNTIME)
改完之后的代码
package com.zking.ssm.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* MyAnnotation1注解可以用在类、接口、属性、方法上
* * 注解运行期也保留
* * 不可继承
*/
@Target({ElementType.TYPE,ElementType.METHOD,ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
//RUNTIME 只有运行时才能使用的注解
public @interface MyAnnotation1 {
// @interface 注解修饰符
// 指的是注解中的属性
public String value() default "可以修饰类和属性、方法";
public String desc() default "可以修饰类和属性、方法";
}
运行结果
package com.zking.ssm.annotation.demo;
import com.zking.ssm.annotation.MyAnnotation1;
import com.zking.ssm.annotation.MyAnnotation2;
import com.zking.ssm.annotation.StudentController;
import java.lang.reflect.Field;
/**
* @author javaxy
* @company xxx公司
* @create 2022-11-17 9:30
*
* 目标:
* 1.获取studentcontroller 类上自定义注解中的类容
* 2.获取studentcontroller 方法上自定义注解中的类容
* 3. 获取studentcontroller 属性上自定义注解中的类容
* 4.获取studentcontroller 参数上自定义注解中的类容
*
* *.Service.Pager(..)
* com.yzp.service.BookService.queryPager(..);
*
*/
public class Demo1 {
public static void main(String[] args) throws Exception {
MyAnnotation1 annotation = StudentController.class.getAnnotation(MyAnnotation1.class);
// System.out.println(annotation.desc());
// System.out.println(annotation.value());
// 获取属性上的
Field id = StudentController.class.getDeclaredField("id");
Field name = StudentController.class.getDeclaredField("name");
System.out.println(id.getAnnotation(MyAnnotation1.class).value());
System.out.println(name.getAnnotation(MyAnnotation1.class).value());
// Field[] declaredFields = StudentController.class.getDeclaredFields();
// for (Field f:declaredFields){
// MyAnnotation1 annotation1 = f.getAnnotation(MyAnnotation1.class);
// if(annotation1!=null){
//
// }
// }
//
}
}
package com.zking.ssm.annotation.demo;
import com.zking.ssm.annotation.MyAnnotation1;
import com.zking.ssm.annotation.MyAnnotation2;
import com.zking.ssm.annotation.StudentController;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
/**
* @author javaxy
* @company xxx公司
* @create 2022-11-17 9:30
*
* 目标:
* 1.获取studentcontroller 类上自定义注解中的类容
* 2.获取studentcontroller 方法上自定义注解中的类容
* 3. 获取studentcontroller 属性上自定义注解中的类容
* 4.获取studentcontroller 参数上自定义注解中的类容
*
* *.Service.Pager(..)
* com.yzp.service.BookService.queryPager(..);
*
*/
public class Demo1 {
public static void main(String[] args) throws Exception {
MyAnnotation1 annotation = StudentController.class.getAnnotation(MyAnnotation1.class);
// System.out.println(annotation.desc());
// System.out.println(annotation.value());
// 获取属性上的
// Field id = StudentController.class.getDeclaredField("id");
// Field name = StudentController.class.getDeclaredField("name");
// System.out.println(id.getAnnotation(MyAnnotation1.class).value());
// System.out.println(name.getAnnotation(MyAnnotation1.class).value());
// 获取方法上的
Method m1 = StudentController.class.getDeclaredMethod("test1", String.class, String.class);
System.out.println(m1.getAnnotation(MyAnnotation1.class).value());
// Field[] declaredFields = StudentController.class.getDeclaredFields();
// for (Field f:declaredFields){
// MyAnnotation1 annotation1 = f.getAnnotation(MyAnnotation1.class);
// if(annotation1!=null){
//
// }
// }
//
}
}
首先要将MyAnnotation2中的注解修改成这个@Retention(RetentionPolicy.RUNTIME),要不然会报跟上面一样的错
package com.zking.ssm.annotation.demo;
import com.zking.ssm.annotation.MyAnnotation1;
import com.zking.ssm.annotation.MyAnnotation2;
import com.zking.ssm.annotation.StudentController;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.lang.reflect.Parameter;
/**
* @author javaxy
* @company xxx公司
* @create 2022-11-17 9:30
*
* 目标:
* 1.获取studentcontroller 类上自定义注解中的类容
* 2.获取studentcontroller 方法上自定义注解中的类容
* 3. 获取studentcontroller 属性上自定义注解中的类容
* 4.获取studentcontroller 参数上自定义注解中的类容
*
* *.Service.Pager(..)
* com.yzp.service.BookService.queryPager(..);
*
*/
public class Demo1 {
public static void main(String[] args) throws Exception {
MyAnnotation1 annotation = StudentController.class.getAnnotation(MyAnnotation1.class);
// System.out.println(annotation.desc());
// System.out.println(annotation.value());
// 获取属性上的
// Field id = StudentController.class.getDeclaredField("id");
// Field name = StudentController.class.getDeclaredField("name");
// System.out.println(id.getAnnotation(MyAnnotation1.class).value());
// System.out.println(name.getAnnotation(MyAnnotation1.class).value());
// 获取方法上的
Method m1 = StudentController.class.getDeclaredMethod("test1", String.class, String.class);
// System.out.println(m1.getAnnotation(MyAnnotation1.class).value());
// 获取到参数上面的
for (Parameter p:m1.getParameters()){
System.out.println(p.getAnnotation(MyAnnotation2.class).value());
}
// Field[] declaredFields = StudentController.class.getDeclaredFields();
// for (Field f:declaredFields){
// MyAnnotation1 annotation1 = f.getAnnotation(MyAnnotation1.class);
// if(annotation1!=null){
//
// }
// }
//
}
}
注解类
package com.zking.ssm.annotation.aop;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* @author javaxy
* @company xxx公司
* @create 2022-11-17 10:26
*/
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface MyLog {
String desc();
}
使用注解类
package com.zking.ssm.annotation.aop;
import org.springframework.stereotype.Controller;
/**
* @author javaxy
* @company xxx公司
* @create 2022-11-17 10:28
*/
@Controller
public class DemoController {
@MyLog( desc = "这是一个测试类的方法")
public void test(){
System.out.println("测试方法");
}
}
日志切面类,使用注解的切面的类
package com.zking.ssm.annotation.aop;
import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
import org.aspectj.lang.annotation.Pointcut;
import org.aspectj.lang.reflect.MethodSignature;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Component;
/**
* @author javaxy
* @company xxx公司
* @create 2022-11-17 10:31
*/
@Component
@Aspect
public class MyLogAspect {
private static final Logger logger = LoggerFactory.getLogger(MyLogAspect.class);
/**
* 只要用到了com.javaxl.p2.annotation.springAop.MyLog这个注解的,就是目标类
*/
@Pointcut("@annotation(com.zking.ssm.annotation.aop.MyLog)")
private void MyValid() {
}
@Before("MyValid()")
public void before(JoinPoint joinPoint) {
// 目标对象,目标方法,传递的参数
MethodSignature signature = (MethodSignature) joinPoint.getSignature();
logger.debug("[" + signature.getName() + " : start.....]");
System.out.println("[" + signature.getName() + " : start.....]");
MyLog myLog = signature.getMethod().getAnnotation(MyLog.class);
logger.debug("【目标对象方法被调用时候产生的日志,记录到日志表中】:"+myLog.desc());
System.out.println("【目标对象方法被调用时候产生的日志,记录到日志表中】:" + myLog.desc());
}
}
测试类
package com.zking.shiro;
import com.zking.ssm.annotation.aop.DemoController;
import com.zking.ssm.biz.ClazzBiz;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
/**
* @author javaxy
* @company xxx公司
* @create 2022-10-26 15:29
*/
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations={"classpath:applicationContext.xml"})
public class DemoBizTest {
@Autowired
private DemoController dc;
@Test
public void test1(){
dc.test();
}
}
pom.xml
4.0.0
org.example
ssm2
1.0-SNAPSHOT
war
ssm2 Maven Webapp
http://www.example.com
UTF-8
1.8
1.8
3.7.0
5.0.2.RELEASE
3.4.5
5.1.44
5.1.2
1.3.1
2.1.1
2.4.3
2.9.1
4.12
4.0.0
1.18.2
2.10.0
1.7.7
2.9.0
1.7.1.RELEASE
org.springframework
spring-context
${spring.version}
org.springframework
spring-orm
${spring.version}
org.springframework
spring-tx
${spring.version}
org.springframework
spring-aspects
${spring.version}
org.springframework
spring-web
${spring.version}
org.springframework
spring-test
${spring.version}
org.mybatis
mybatis
${mybatis.version}
mysql
mysql-connector-java
${mysql.version}
com.github.pagehelper
pagehelper
${pagehelper.version}
org.mybatis
mybatis-spring
${mybatis.spring.version}
org.apache.commons
commons-dbcp2
${commons.dbcp2.version}
org.apache.commons
commons-pool2
${commons.pool2.version}
org.apache.logging.log4j
log4j-core
${log4j2.version}
org.apache.logging.log4j
log4j-api
${log4j2.version}
org.apache.logging.log4j
log4j-web
${log4j2.version}
junit
junit
${junit.version}
test
javax.servlet
javax.servlet-api
${servlet.version}
provided
org.projectlombok
lombok
${lombok.version}
provided
org.springframework
spring-webmvc
${spring.version}
javax.servlet.jsp
javax.servlet.jsp-api
2.3.3
jstl
jstl
1.2
taglibs
standard
1.1.2
commons-fileupload
commons-fileupload
1.3.3
org.hibernate
hibernate-validator
6.0.7.Final
com.fasterxml.jackson.core
jackson-databind
2.9.3
com.fasterxml.jackson.core
jackson-core
2.9.3
com.fasterxml.jackson.core
jackson-annotations
2.9.3
org.apache.shiro
shiro-core
1.3.2
org.apache.shiro
shiro-web
1.3.2
org.apache.shiro
shiro-spring
1.3.2
net.sf.ehcache
ehcache
${ehcache.version}
org.slf4j
slf4j-api
${slf4j-api.version}
org.slf4j
jcl-over-slf4j
${slf4j-api.version}
runtime
org.apache.logging.log4j
log4j-slf4j-impl
${log4j2.version}
redis.clients
jedis
${redis.version}
org.springframework.data
spring-data-redis
${redis.spring.version}
ssm2
src/main/java
**/*.xml
src/main/resources
*.properties
*.xml
org.apache.maven.plugins
maven-compiler-plugin
${maven.compiler.plugin.version}
${maven.compiler.target}
${project.build.sourceEncoding}
org.mybatis.generator
mybatis-generator-maven-plugin
1.3.2
mysql
mysql-connector-java
${mysql.version}
true
maven-clean-plugin
3.1.0
maven-resources-plugin
3.0.2
maven-compiler-plugin
3.8.0
maven-surefire-plugin
2.22.1
maven-war-plugin
3.2.2
maven-install-plugin
2.5.2
maven-deploy-plugin
2.8.2
测试结果: