E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
ElementType
自定义注解支持SPEL表达式
问题描述在项目中,我自定义了一个注解:@Documented@Target({
ElementType
.METHOD})@Retention(RetentionPolicy.RUNTIME)p
怕乌龟骑
·
2023-11-27 10:41
Java框架
01-2 SpringBoot中URL方法映射
方法映射有多重方式一、RequestMapping映射通过之前的学习了解了RequestMapping的基本用法,并知道作用是用于UARL映射通过通过源码可以知道RequestMapping有如下属性@Target({
ElementType
.METHOD
潜水艇_
·
2023-11-27 09:36
微服务-spring
boot
微服务
SpringBoot
URL方法映射
AOP + 自定义注解实现日志打印
1.先定义个注解,让它作用于方法上@Target({
ElementType
.METHOD})@Retention(RetentionPolicy.RUNTIME)public@interfaceLoggable
HelloWorld. py
·
2023-11-27 08:36
java
spring
AOP
springboot启动分析(三)
@SpringBootApplication主要是如下三个注解:SpringBootConfigurationEnableAutoConfigurationComponentScan@Target(
ElementType
.TYPE
braveheart075
·
2023-11-26 18:05
springboot集成mybatis拦截器实现自动生成创建时间和更新时间
mybatis拦截器实现自动生成创建时间和更新时间第一步:定义注解@UpdateTime和@CreateTime@Retention(RetentionPolicy.RUNTIME)@Target({
ElementType
.FIELD
大妖怪来了
·
2023-11-26 07:28
日常记录-springboot整合用户操作日志AOP
*;@Target(
ElementType
.METHOD)//注解放置的目标位置即方法级别@Retention(RetentionPolicy.RUNTIME)//注解在哪个阶段执行@Documentedp
蜗牛+火箭
·
2023-11-24 15:24
技术积累
spring
boot
后端
java
【java ORMapping】java反射实现简单ormapping框架
bean注解ZBean.java类注解对应数据库表packagecom.seagate.client.dao.ormapping.anotation;importjava.lang.annotation.
ElementType
秦拿希
·
2023-11-24 11:18
java
java
ormapping
反射
springboot项目实战之简单aop定义使用
Springboot实战1.定义名称,如下ManagerOperatorRole@Retention(RetentionPolicy.RUNTIME)@Target(
ElementType
.METHOD
sccd2009
·
2023-11-24 11:16
spring
boot
java
后端
使用注解将EventBus封装抽取到基类
注解类BindEventBus.java/***desc:需要使用eventbus的activit和Fragment都需要以注解的方式绑定到此*/@Target(
ElementType
.TYPE)@Retention
绝学弃智
·
2023-11-24 04:13
使用注解的AOP编程
*;@Retention(RetentionPolicy.RUNTIME)@Target({
ElementType
.METHOD,ElementTyp
IDIOT___IDIOT
·
2023-11-24 01:00
java
开发语言
使用注解JSON序列化
yyyy-MM-ddhh:mm",timezone="GMT+8")将日期数据转换成特定格式使用@JsonSerialize自定义注解接口定义接口importjava.lang.annotation.
ElementType
钦拆大仁
·
2023-11-23 17:14
常用工具
java
spring
jvm
@Target、@Retention、@Documented、@Inherited注解的超详细分析
@Target@Target(
ElementType
.ANNOTATION_TYPE)的@Target注解是Java中用于注解定义的元注解之一,它用于指定被定义的注解可以应用到哪些其他注解上。
穗余
·
2023-11-22 07:04
java
开发语言
自定义注解比较两个对象差异
1、自定义注解类@Target(
ElementType
.FIELD)@Retention(RetentionPolicy.RUNTIME)public@interfaceignoreCompare{booleanisCompare
新生代农名工
·
2023-11-22 05:12
redis实现分布式限流 结合Lua脚本
spring-boot-demohttps://github.com/xkcoding/spring-boot-demo通过AOP结合Redis+Lua脚本实现分布式限流,旨在保护API被恶意频繁访问的问题自定义注解@Target(
ElementType
.METHOD
暖风ii
·
2023-11-21 22:17
lua
redis
数据库
Spring boot 基于aop+redis+lua脚本自定义注解实现接口QPS限流
org.springframework.bootspring-boot-starter-aop1.限流类型LimitTypepublicenumLimitType{/***自定义key*/CUSTOMER,/***根据请求者IP*/IP;}2.新增注解Limit@Target({
ElementType
.METHOD
小李ing
·
2023-11-21 05:47
java
redis
java注解拦截,springmvc里使用注解进行拦截器配置
这在使用中非常不方便,我们来扩展下springmvc,增加一个类,就可以实现注解拦截器.首先把下面这个类拷贝进去:packageinterceptor;importjava.lang.annotation.
ElementType
蜗牛郭
·
2023-11-20 16:59
java注解拦截
redis限流实现;使用springMVC拦截器RedisTemplate
importjava.lang.annotation.
ElementType
;importjava.lang.annotation.Retention;importjava.lang.annotation.RetentionPolicy
又菜又懒001
·
2023-11-20 16:55
实战
spring
redis
java
限流
springMVC拦截器
RedisTemplate
JAVA学习实战(一)登录拦截器实现以及注解LogRequired实现(内含拦截器 HandlerInterceptor 的详细讲解以及注解的具体实现方法)
前几天在学习一个网站项目的时候看到了Java的注解这个东西的实现感觉挺有意思的,想结合项目进行一个简单的讲解,希望能够帮助自己复习巩固一遍,同时也能够帮助更多学习过的人@Target(
ElementType
.METHOD
会说话的皮卡丘
·
2023-11-19 10:01
JAVA学习实战
java
spring
restful
spring-注解和反射基础应用
b,实现以下-2.1获取引用注解的对象的信息-2.2获取注解-2.3操作引用注解的对象信息和注解信息,实现自定义注解的具体功能逻辑3写业务代码,引用@a注解代码示例:1写一个注解@a@Target({
ElementType
thePLJ
·
2023-11-19 02:03
Spring
Java笔记
spring
java
后端
SpringBoot+AOP+ThreadLocal切面实现用户操作记录-超级详细
*;@Target(
ElementType
.METHOD)@Retention(RetentionPolicy.RUNTIME)@Documentedpublic@interfaceLog{/***编辑的表主键
記億揺晃着的那天
·
2023-11-18 22:37
java
spring
spring
boot
servlet
idea
java 易错笔记
Import(ThreadPoolTaskConfiguration.class),来覆盖spring中默认的线程池类@Retention(RetentionPolicy.RUNTIME)@Target(
ElementType
.TYPE
专业的小学生
·
2023-11-16 12:50
java
笔记
spring
Spring feign cloud支持表单等数据类型
Springcloudfeignclient支持自定规则,如contract,encoder,decoder等等,通常我们会自定义个业务feignClient自定义Feignclient@Target(
ElementType
.TYPE
asa-x
·
2023-11-16 02:07
spring
cloud
feign
client
form-data
Java接口之脱敏工具
Desensitized.javaimportjava.lang.annotation.
ElementType
;importjava.lang.annotation.Retention;importjava.lang.annotation.RetentionPolicy
会功夫的李白
·
2023-11-14 17:49
Java
java
开发语言
脱敏工具
@RequestParam和@RequestBody的使用
@RequestParam注解@Target(
ElementType
.PARAMETER)@Retention(RetentionPolicy.RUN
L.ZZ
·
2023-11-14 16:00
SpringCloud
Java
java
spring
postman
springboot接口限制访问次数
对接口访问次数的限制是从java版web项目公众号中看到于是百度结合自己现有项目写了一下首先需要定义一个注解importjava.lang.annotation.
ElementType
;importjava.lang.annotation.Retention
战战的坚果
·
2023-11-14 07:27
工作中遇到的问题
spring
redis
注解和反射实现Excel导入导出
目录使用实例定义三个注解/***设置允许导出*/@Target(
ElementType
.TYPE)@Retention(RetentionPolicy.RUNTIME)public@interfaceEnableExport
骆驼整理说
·
2023-11-14 04:53
系统架构设计
java
开发语言
苍穹外卖项目学习日记(4)
AutoFill.javapackagecom.sky.annotation;importcom.sky.enumeration.OperationType;importjava.lang.annotation.
ElementType
荼图
·
2023-11-13 13:28
苍穹外卖
spring
boot
java
SpringBoot 自动配置原理
@Target({
ElementType
.TYPE})@Retention(RetentionPolicy.RUNTIME)@Documented@Inherited@SpringBootConfiguration
本科学的写bug
·
2023-11-13 00:02
spring
boot
java
后端
java基于HuTool工具类ExcelWriter合并单元格
工具类ExcelWriter合并单元格基于HuTool工具类ExcelWriter合并单元格并且使用jdk1.8lambda表达式效果如下:创建注解importjava.lang.annotation.
ElementType
行~者
·
2023-11-12 14:01
java
java
excel
poi
springboot项目通过自定义注解+aop实现对入参加解密
1.创建自定义注解:@Target({
ElementType
.FIELD,
ElementType
.PARAMETER})@Retention(RetentionPolicy.RUNTIME)public
烁雨
·
2023-11-12 10:30
spring
boot
java
spring
springboot 实现公共字段填充
theme:smartblue问题分析方式一:自定义注解AutoFill创建注解/***自定义注解,用于标识某个方法需要进行功能字段自动填充处理*/@Target(
ElementType
.METHOD)
飞宇千虹
·
2023-11-12 05:15
spring
boot
java
mybatis
后端
spring
SpringBoot 项目公共字段填充
[公共字段自动填充]核心:在切面类中捕获需要填充公共字段的Mapper方法,方法上使用注解加以标识,通过反射拿到需要填充的字段赋值方法,进行赋值操作1、自定义注解AutoFill@Target(
ElementType
.METHOD
玄天灵
·
2023-11-12 05:22
项目相关
spring
boot
后端
java
微头条项目实战:新增RequestHeader注解
*;@Target(
ElementType
.PARAMETER)@Retention(RetentionPolicy.RUNTIME)@Inheritedpublic@interfaceRequestHeader
丁总学Java
·
2023-11-11 22:11
#
IOC_MVC
java
Method
Parameter
Annotation
【第十四篇】Spring Boot返回Json数据及数据封装
@Target({
ElementType
.TYPE})@Re
sunnyday0426
·
2023-11-11 01:39
Spring
Boot
json
spring
boot
spring
fastJson
jackson
通过切面日志实现业务数据历史变更
通过两次的传输参数进行对比实现直观的数据变化4.此种方法缺点:每次对比只能对比已有参数的变化,没有传输的无法对比,(可以通过找权限变化的数据来实现全部对比)元数据注解/***操作日志注解**/@Target(
ElementType
.METHO
有你有我OK
·
2023-11-10 05:11
spring
boot
SpringAop和Redis实现分布式锁限制接口重复提交
实现分布式锁自定义注解aop切面涉及枚举归纳限制接口重复提交涉及的点:SpringAop切面、Redis、自定义注解SpringAop+Redis实现分布式锁自定义注解//作用目标在方法上@Target(
ElementType
.METHOD
凉水不好喝
·
2023-11-09 18:59
SpringBoot
分布式锁
redis
SpringAop
springboot+redis实现限流再相约
实例限流方式的枚举类publicenumLimitType{/***默认策略全局限流*/DEFAULT,/***根据请求IP进行限流*/IP}限流注解@Target(
ElementType
.METHOD
ldcaws
·
2023-11-09 17:56
redis
redis
spring
boot
lua
SpringBoot核心注解,配置文件,condition,启动器分析,源码分析,自建springboot启动器starter,SpringBoot集成jsp
@SpringBootApplication标识springboot项目的启动类打开@SpringBootApplication注解@Target({
ElementType
.TYPE})@Retention
打乒乓球只会抽
·
2023-11-08 15:43
spring
boot
spring
boot
spring
java
FeignClient注解及参数
一、FeignClient注解FeignClient注解被@Target(
ElementType
.TYPE)修饰,表示FeignClient注解的作用目标在接口上@FeignClient(name="github-client
牧马人Eikko
·
2023-11-08 01:12
SpringBoot
Java
java
SpringBoot系统日志Aop注解方式动态记录
*;@Retention(value=RetentionPolicy.RUNTIME)@Target(value={
ElementType
.METHOD})@Documented@Inheritedpublic
骆驼整理说
·
2023-11-07 10:12
系统架构设计
java
服务器
前端
Spring中@Qualifier注解详细解析
目录前言1.源码2.代码实战前言当一个接口有多个实现的时候哪个注解可以指明是哪个实现类可以通过使用@Qualifier1.源码查看源码可以更加透彻的了解@Target({
ElementType
.FIELD
码农研究僧
·
2023-11-06 15:55
java
leetcode
算法
职场和发展
基于SpringAOP的权限管理
不废话,上代码1.自定义注解@Target({
ElementType
.METHOD})@Retention(RetentionPolicy.RUNTIME)@Documentedpublic@interfaceMyAnnotation
有聊数太阳
·
2023-11-06 11:47
java
springboot
java
spring
Aop自定义注解生成日志
Aop自定义注解生成日志1.编写自定义注解//表示此注解可以标注在方法上@Target(
ElementType
.METHOD)//运行时生效@Retention(RetentionPolicy.RUNTIME
今天的代码敲了吗
·
2023-11-06 09:07
Java学习
java
利用Mybatis拦截器+反射机制,设计加解密注解
①拦截器原理详见Mybatis插件系列一:拦截器的基础知识代码实现:一、创建自定义注解EncryptionAndDecryption:@Target({
ElementType
.FIELD})@Retention
lew-yu
·
2023-11-06 02:30
mybatis
java
开发语言
EventBus3.1.1封装使用
一、注解类BindEventBus.java@Target(
ElementType
.TYPE)@Retention(RetentionPolicy.RUNTIME)public@interfaceBindEventBus
小婷婷tt
·
2023-11-06 02:33
项目实战:新增@RequestMapping和@GetMapping和@PostMapping三个注解
*;@Target(
ElementType
.TYPE)@Retention(RetentionPolicy.RUNTIME)@Inheritedpublic@interfaceRequestMapping
丁总学Java
·
2023-11-06 01:44
#
IOC_MVC
java
开发语言
RequestMapping
PostMapping
GetMapping
项目实战:新增@Controller和@Service@Repository@Autowire四个注解
*;@Target(
ElementType
.TYPE)@Retention(RetentionPolicy.RUNTIME)@Inheritedpublic@interfaceController{}2
丁总学Java
·
2023-11-06 01:44
#
IOC_MVC
java
Controller
Service
Repository
Autowire
表单防止重复提交--幂等性
*;/***防止重新提交*/@Inherited@Target(
ElementType
.METHOD)@Retention(RetentionPolicy.RUNTIME)@Documentedpublic
號先生
·
2023-11-05 22:49
javaEE
springboot
幂等性
表单防止重复提交
分布式场景下接口的限流、幂等、防止重复提交
*;/***@author向振华*@date2022/11/2118:16*/@Target(
ElementType
.METHOD)@Retention(RetentionPolicy.RUNTIME)
抓手
·
2023-11-05 22:36
架构设计
分布式
java
开发语言
幂等
springboot单例模式注入对象_SpringBoot 常用注解和原理都在这儿了!
一、启动注解@SpringBootApplication@Target(
ElementType
.TYPE)@Retention(RetentionPolicy.RUNTIME)@Documented@Inherited
weixin_39600400
·
2023-11-05 17:24
上一页
1
2
3
4
5
6
7
8
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他