xx市院门户网站建设方案辽宁省建设工程信息网锁丢失
- 作者: 五速梦信息网
- 时间: 2026年03月21日 10:00
当前位置: 首页 > news >正文
xx市院门户网站建设方案,辽宁省建设工程信息网锁丢失,安卓软件开发软件,页面跳转不了#x1f3ac; 艳艳耶✌️#xff1a;个人主页 #x1f525; 个人专栏 #xff1a;《Spring与Mybatis集成整合》 ⛺️ 生活的理想#xff0c;为了不断更新自己 ! 1.前言 1.1.什么是注解 Annontation是Java5开始引入的新特征#xff0c;中文名称叫注解。 它提供了一种安全… 艳艳耶✌️个人主页 个人专栏 《Spring与Mybatis集成整合》 ⛺️ 生活的理想为了不断更新自己 ! 1.前言 1.1.什么是注解 Annontation是Java5开始引入的新特征中文名称叫注解。 它提供了一种安全的类似注释的机制用来将任何的信息或元数据metadata与程序元素类、方法、成员变量等进行关联。为程序的元素类、方法、成员变量加上更直观、更明了的说明这些说明信息是与程序的业务逻辑无关并且供指定的工具或框架使用。Annontation像一种修饰符一样应用于包、类型、构造方法、方法、成员变量、参数及本地变量的声明语句中。 Java注解是附加在代码中的一些元信息用于一些工具在编译、运行时进行解析和使用起到说明、配置的功能。注解不会也不能影响代码的实际逻辑仅仅起到辅助性的作用。 1.2.注解的用处 生成文档。这是最常见的也是java 最早提供的注解。常用的有param return 等跟踪代码依赖性实现替代配置文件功能。比如Dagger 2 依赖注入未来java 开发将大量注解配置具有很大用处;在编译时进行格式检查。如override 放在方法前如果你这个方法并不是覆盖了超类方法则编译时就能检查出。 1.3.注解的原理 注解本质是一个继承了Annotation 的特殊接口其具体实现类是Java 运行时生成的动态代理类。而我们通过反射获取注解时返回的是Java 运行时生成的动态代理对象$Proxy1。通过代理对象调用自定义注解接口的方法会最终调用AnnotationInvocationHandler 的invoke 方法。该方法会从memberValues 这个Map 中索引出对应的值。而memberValues 的来源是Java 常量池。 2.注解的案列 2.1 案例一获取类与方法上的注解值 定义一个类 package com.sy.annotation.pi;public enum TranscationModel {Read, Write, ReadWrite //定义三个实例可以将它看作类} 写三个注解 package com.sy.annotation;import java.lang.annotation.;/** MyAnnotation1注解可以用在类、接口、属性、方法上* 注解运行期也保留* 不可继承/ Target({ElementType.TYPE, ElementType.FIELD,ElementType.METHOD}) Retention(RetentionPolicy.RUNTIME) Documented public interface MyAnnotation1 {String name(); } package com.sy.annotation;import java.lang.annotation.;/*** MyAnnotation2注解可以用在方法上* 注解运行期也保留* 不可继承/ Target(ElementType.METHOD) Retention(RetentionPolicy.RUNTIME) Documented public interface MyAnnotation2 {TranscationModel model() default TranscationModel.ReadWrite; }package com.sy.annotation;import java.lang.annotation.;/*** author shenyan** MyAnnotation3注解可以用在方法上* 注解运行期也保留* 可继承/ Target(ElementType.METHOD) Retention(RetentionPolicy.RUNTIME) Inherited Documented public interface MyAnnotation3 {TranscationModel[] models() default TranscationModel.ReadWrite; }创建几个方法使用这些注解 package com.sy.annotation.Demo1;import com.sy.annotation.MyAnnotation1; import com.sy.annotation.MyAnnotation2; import com.sy.annotation.MyAnnotation3; import com.sy.annotation.TranscationModel;/** author shenyan** 获取类与方法上的注解值/ MyAnnotation1(name 艳艳耶) public class Demo1 {MyAnnotation1(name csdn)private Integer age;MyAnnotation2(model TranscationModel.Read)public void list() {System.out.println(list);}MyAnnotation3(models {TranscationModel.Read, TranscationModel.Write})public void edit() {System.out.println(edit);} }最后进行测试 2.2 案例二获取类属性上的注解属性值默认值的赋予 自定义一个注解并赋予默认值 package com.sy.annotation.Demo2;import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target;/** author shenyan* / //Retention(RetentionPolicy.SOURCE) Retention(RetentionPolicy.RUNTIME) Target(ElementType.FIELD) public interface TestAnnotation {String value() default 默认value值;String what() default 这里是默认的what属性对应的值; }建立类测试 有些两个值都赋予了有些只赋予了一个 package com.sy.annotation.Demo2;/*** author shenyan** 获取类属性上的注解属性值/ public class Demo2 {TestAnnotation(value 这就是value对应的值_msg1, what 这就是what对应的值_msg1)private static String msg1;TestAnnotation(这就是value对应的值1)private static String msg2;TestAnnotation(value 这就是value对应的值2)private static String msg3;TestAnnotation(what 这就是what对应的值)private static String msg4; }测试结果 2.3 案例三获取参数修饰注解对应的属性值非空注解 同样先建立一个非空注解 package com.sy.annotation;import java.lang.annotation.;/*** author shenyan** 非空注解使用在方法的参数上false表示此参数可以为空true不能为空/ Documented Target({ElementType.PARAMETER}) Retention(RetentionPolicy.RUNTIME) public interface IsNotNull {boolean value() default false; }建立方法进行测试 package com.sy.annotation.Demo3;import com.sy.annotation.IsNotNull;/** author shenyan** 获取参数修饰注解对应的属性值/ public class Demo3 {public void hello1(IsNotNull(true) String name) {System.out.println(hello: name);}public void hello2(IsNotNull String name) {System.out.println(hello: name);} } 测试类 方法1 方法2 方法3 3.AOP结合自定义注解案例 配置相关AOP pom文件 dependencygroupIdorg.springframework.boot/groupIdartifactIdspring-boot-starter-aop/artifactId/dependencyapplicationContext.xml ?xml version1.0 encodingUTF-8? beans xmlnshttp://www.springframework.org/schema/beansxmlns:xsihttp://www.w3.org/2001/XMLSchema-instancexmlns:contexthttp://www.springframework.org/schema/context xmlns:txhttp://www.springframework.org/schema/txxmlns:aophttp://www.springframework.org/schema/aopxsi:schemaLocationhttp://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd!–1. 注解式开发 –!– 注解驱动 –context:annotation-config/!– 用注解方式注入bean并指定查找范围com.javaxl.ssh2及子子孙孙包–context:component-scan base-packagecom.zking/!–开启动态代理–aop:aspectj-autoproxy //beans 定义一个标志日志的注解 package com.sy.annotation;import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target;/** author shenyan/Target(ElementType.METHOD) Retention(RetentionPolicy.RUNTIME) public interface MyLog {String desc(); } 再创建一个切面类 LogAspect用于实现日志记录的逻辑。 package com.sy.annotation.aop;import com.sy.annotation.MyLog; 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 shenyan/ Component Aspect public class MyLogAspect {private static final Logger logger LoggerFactory.getLogger(MyLogAspect.class);/** 只要用到了com.javaxl.p2.annotation.springAop.MyLog这个注解的就是目标类/Pointcut(annotation(com.sy.annotation.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.sy.annotation.aop;import com.sy.annotation.MyLog; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping;/** author shenyan*/ Controller public class LogController {RequestMapping(/myLog)MyLog(desc 这是结合spring aop知识讲解自定义注解应用的一个案例)public void testLogAspect(){System.out.println(这里随便来点啥);} }运行结果 今日分享结束
- 上一篇: xp做网站网站建设注意细节
- 下一篇: xx网站开发建设方案域名备案 填写网站信息
相关文章
-
xp做网站网站建设注意细节
xp做网站网站建设注意细节
- 技术栈
- 2026年03月21日
-
xp系统没有lls组件可以做网站吗网站做法
xp系统没有lls组件可以做网站吗网站做法
- 技术栈
- 2026年03月21日
-
xp系统建设网站WordPress批量发布插件
xp系统建设网站WordPress批量发布插件
- 技术栈
- 2026年03月21日
-
xx网站开发建设方案域名备案 填写网站信息
xx网站开发建设方案域名备案 填写网站信息
- 技术栈
- 2026年03月21日
-
yandex网站推广怎么利用互联网平台赚钱
yandex网站推广怎么利用互联网平台赚钱
- 技术栈
- 2026年03月21日
-
yy头像在线制作网站网页界面设计教案
yy头像在线制作网站网页界面设计教案
- 技术栈
- 2026年03月21日






