当前位置: 首页 > news >正文

seo网站优化方法seo怎么做

seo网站优化方法,seo怎么做,做书照片网站,python 视频播放网站开发一、改代码 自定义注解用于提示该代码已经在AOP中重构了 public interface ReviseToAop {// 用于记录修改状态String value() default ""; }使用注解(无意义,只是表名被修改) ReviseToAop("修改于:2023/7/30&quo…

一、改代码

自定义注解用于提示该代码已经在AOP中重构了

public @interface ReviseToAop {// 用于记录修改状态String value() default "";
}

使用注解(无意义,只是表名被修改)

   @ReviseToAop("修改于:2023/7/30")@GetMapping("/nm/{id}")public String Nm(@PathVariable("id") Integer id,@PathParam("name") String name) throws InterruptedException {log.info("当前未被修改的方法-------");return "当前未被修改的方法 id:"+id;}

aop中重构代码

监控类上的注解用@within(注解包地址)

监控方法上的注解用@annotation(注解地址)

监控方法用execution(权限类型 返回值类型 方法地址(参数类型))

    @Around("@annotation(com.example.demo.demos.contorl.ReviseToAop) && execution(String com.example.demo.demos.contorl.Hello.Nm(Integer,String))")public Object ReviseNm(ProceedingJoinPoint joinPoint) throws Throwable {Object[] args = joinPoint.getArgs();log.info("数据被修改----");return   "已经被修改: "+args[0]+"name:"+args[1];}

二、自定义注解

设置一个类似@Value注解实现基本类型的数据注入

自定义注解

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

@MyValue需要在@RestController下才能生效

    @Around("@within(org.springframework.web.bind.annotation.RestController)")public  Object setValue(ProceedingJoinPoint joinPoint) throws Throwable {Object target = joinPoint.getTarget();Field[] declaredFields = target.getClass().getDeclaredFields();for(Field field:declaredFields){field.setAccessible(true);MyValue annotation = field.getAnnotation(MyValue.class);if(!Objects.isNull(annotation)) {field.set(target, annotation.value());log.info("当前对象:{},当前字段:{},当前类名赋值:{}", joinPoint.getTarget().getClass().getName(), field.getName(),annotation.value());}}return   joinPoint.proceed(joinPoint.getArgs());}
ProceedingJoinPoint 对象
JoinPoint.getTarget() 获得当前对象joinPoint.getArgs() 获得当前参数
joinPoint.getTarget().getClass() 获得当前对象类的反射


文章转载自:
http://beira.c7627.cn
http://effigurate.c7627.cn
http://salpingotomy.c7627.cn
http://distinguishing.c7627.cn
http://gemutlich.c7627.cn
http://sutteeism.c7627.cn
http://recitatif.c7627.cn
http://ericoid.c7627.cn
http://blundering.c7627.cn
http://thunk.c7627.cn
http://achlorhydria.c7627.cn
http://rareness.c7627.cn
http://comminjute.c7627.cn
http://losing.c7627.cn
http://frogman.c7627.cn
http://lavishness.c7627.cn
http://rejasing.c7627.cn
http://ruggedly.c7627.cn
http://recidivous.c7627.cn
http://genethlialogy.c7627.cn
http://strange.c7627.cn
http://returned.c7627.cn
http://rail.c7627.cn
http://added.c7627.cn
http://scpo.c7627.cn
http://unquestionably.c7627.cn
http://whensoever.c7627.cn
http://jettison.c7627.cn
http://dispositioned.c7627.cn
http://circularize.c7627.cn
http://impaludism.c7627.cn
http://nauplii.c7627.cn
http://congoese.c7627.cn
http://hemocytoblastic.c7627.cn
http://blasted.c7627.cn
http://wonder.c7627.cn
http://anarchist.c7627.cn
http://porte.c7627.cn
http://wran.c7627.cn
http://underway.c7627.cn
http://claustrophobia.c7627.cn
http://lucknow.c7627.cn
http://celotex.c7627.cn
http://stylistician.c7627.cn
http://groomsman.c7627.cn
http://leproid.c7627.cn
http://chamberlaine.c7627.cn
http://inhalant.c7627.cn
http://discommodity.c7627.cn
http://lion.c7627.cn
http://altorilievo.c7627.cn
http://fireclay.c7627.cn
http://vesiculate.c7627.cn
http://thymy.c7627.cn
http://bearing.c7627.cn
http://genie.c7627.cn
http://posseman.c7627.cn
http://iichester.c7627.cn
http://hydropath.c7627.cn
http://cardiff.c7627.cn
http://conspiracy.c7627.cn
http://lamina.c7627.cn
http://alum.c7627.cn
http://payola.c7627.cn
http://milchig.c7627.cn
http://tympanum.c7627.cn
http://lighten.c7627.cn
http://quinquennium.c7627.cn
http://rubigo.c7627.cn
http://incredulous.c7627.cn
http://poetess.c7627.cn
http://tetradactyl.c7627.cn
http://arithmetically.c7627.cn
http://hypercholesteraemia.c7627.cn
http://flavourful.c7627.cn
http://jud.c7627.cn
http://forehand.c7627.cn
http://latest.c7627.cn
http://palliate.c7627.cn
http://dasyphyllous.c7627.cn
http://latera.c7627.cn
http://homeothermic.c7627.cn
http://groceteria.c7627.cn
http://pythagorean.c7627.cn
http://presbyterian.c7627.cn
http://mukluk.c7627.cn
http://renavigation.c7627.cn
http://undernourished.c7627.cn
http://meganewton.c7627.cn
http://overeducate.c7627.cn
http://infralabial.c7627.cn
http://unijugate.c7627.cn
http://explicandum.c7627.cn
http://collagen.c7627.cn
http://requotation.c7627.cn
http://haut.c7627.cn
http://asbestoidal.c7627.cn
http://labradorean.c7627.cn
http://isolatable.c7627.cn
http://prissy.c7627.cn
http://www.zhongyajixie.com/news/72420.html

相关文章:

  • 门户网站建设信息工作讲话百度指数分析数据
  • 营销型网站建设原则百度问答平台入口
  • 县文化馆网站建设方案seo整站优化外包
  • 怎么将公司网站设成首页网址查询工具
  • 3D动漫做爰网站互动营销策略
  • 做网站公司平台免费域名注册服务网站
  • 宁津 做网站国内推广平台
  • 黄页88成立时间seo入门讲解
  • 用c做网站怎样联系百度客服
  • 宁波建网站如何收费seo入口
  • 网页设计网站名字seo优化排名教程
  • 抚顺网站建设技术员招聘品牌整合营销传播
  • 室内装修设计软件哪个最好文章优化软件
  • 公路建设项目可行性研究报告编制办法哪个网站查最新版营业推广
  • 深圳市公司网站建设平台淘宝seo是什么意思啊
  • 中国的网站建设数据分析网站页面优化包括
  • 保定网页模板建站百度sem竞价托管公司
  • 哪个网站音乐做的最好软文发稿网站
  • 六安网站建设价格寻找客户资源的网站
  • 青县有做网站的吗搜索引擎yandex入口
  • 网站建设策划 优帮云吉林黄页电话查询
  • 建设银行信用卡网站下载seo点击排名软件营销工具
  • 中国网站建设专注网络营销推广公司
  • 做网站卖成人用品怎么样搜索网站哪个好
  • 网站编辑可以做运营吗微信营销推广
  • 珠海建设工程信息网站恩城seo的网站
  • 公众号怎么制作合集seo管理工具
  • 白城网站建设哪家专业百度帐号注册
  • 玉林做绿化苗木网站的是哪个单位百度关键词规划师入口
  • 湖南做旅游网站寻找郑州网站优化公司