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
从Xutils运行时注解复习Java注解
先看一下一个注解类的格式@Target(
ElementType
.METHOD)@Retention(RetentionPolicy.RUNTIME)public@interfaceNoodles
Lilee丶
·
2023-12-31 00:31
@EnableFeignClients原理剖析
首先我们来看看@EnableFeignClients的定义:@Retention(RetentionPolicy.RUNTIME)@Target(
ElementType
.TYPE)@Documented
时间的痕迹01
·
2023-12-30 18:23
spring
boot
后端
java
Java Bean Validation
定义校验注解@Documented@Retention(RetentionPolicy.RUNTIME)@Target({
ElementType
.FIELD,
ElementType
.ANNOTATION_TYPE
赛亚人之神
·
2023-12-30 12:23
@Configuration(proxyBeanMethods = false) 和(proxyBeanMethods = true)详解
proxyBeanMethods=true或不写,是Full模式proxyBeanMethods=false是lite模式不带@Configuration的类叫Lite配置类先看注解源码:@Target({
ElementType
.TYPE
怎么又有bug单
·
2023-12-30 06:37
SpringBoot
java
spring
boot
spring
注解
程序员
@ConditionalOnProperty Spring 使用介绍 源码分析
packageorg.springframework.boot.autoconfigure.condition;importjava.lang.annotation.Documented;importjava.lang.annotation.
ElementType
小小兔在普陀山走神啊
·
2023-12-30 03:54
Spring
各种各样的问题记录
spring
java
后端
Java 开发中,常用的注解整理
Java开发中,常用的注解整理一、元注解(用来修饰注解的注解)@Target(
ElementType
.xxx)@Retention(RetentionPolicy.xxx)@Documented@Inherited
我是王小贱
·
2023-12-29 20:55
java
开发语言
注解实现接口鉴权和防刷限制
使用项目中需要对开放给第三方接口实现鉴权和防刷限制可以使用自定义注解和Interceptor来实现步骤1.自定义注解@Retention(RetentionPolicy.RUNTIME)@Target(
ElementType
.METHOD
*郑*
·
2023-12-29 01:23
java
java
spring
boot
Spring 代理搭建分布式锁组件
觉得很有意思该组件的主要作用就是通过注解@DistributedLock来实现分布式锁,并使用SPI来自定义分布式锁的具体逻辑实现简单实现这里写一个简单的Demo,首先先定义注解/***分布式锁注解*/@Target(
ElementType
.METHOD
bobasyu
·
2023-12-28 16:14
spring
java
基于Redis分布式锁的防重复提交组件
防重复提交注解:Resubmitimportjava.lang.annotation.
ElementType
;importjava.lang.annotation.Retention;importjava.lang.annotation.RetentionPolicy
after95
·
2023-12-28 13:51
常用工具类
笔记
开发日常
redis
分布式
java
重复提交
SpringMVC Hibernate validator使用以及自定义校验器注解
创建自定义校验器importjavax.validation.Constraint;importjavax.validation.Payload;importjava.lang.annotation.
ElementType
无恋-zx
·
2023-12-28 07:35
java
Java Excel (Apache POI + annotation)
思路:自定义注解,导出/读取excel根据注解自动解析字段注解packagecom.excel;importjava.lang.annotation.
ElementType
;importjava.lang.annotation.Retention
一颗北上广的心
·
2023-12-26 12:39
@RequestMapping注解
源码:@Target({
ElementType
.METHOD,
ElementType
.TYPE})@Retention(RetentionPolicy.RUNTIME)@Documented@Mappingpublic
智商欠费,不死也废
·
2023-12-26 11:24
Spring学习
java
spring
详细学习Java注解Annotation、元注解(通俗易懂,一学就会)
@Target({枚举值,枚举值....})枚举值通过
ElementType
.枚举对象获取。1.单个注解可省略{}2.多个属性值用逗号隔开,{}
莫青.
·
2023-12-26 01:58
Java学习从0到1
学习
java
注解
Annotation
元注解
spring中@Data注解详细解析
优缺点前言这个注解一般主要的功能是在实体类上面主要功能是为了提供类的get、set、equals、hashCode、canEqual、toString方法1.源码通过学习注解上的源码以及官方文档可以了解更加透彻importjava.lang.annotation.
ElementType
码农研究僧
·
2023-12-25 07:09
java
java
spring
后端
《Spring 编程常见错误50例》-学习笔记-Day3
但是有时候,我们也会使用@Value进行装配,不对这两种风格使用不同,使用@Autowired一般都不会设置属性值,而@Value必须制定一个字符串值,因为其定义了要求,其代码如下:@Target({
ElementType
.FIELD
qq_31273845
·
2023-12-24 15:18
spring
学习
java
后端
hibernate-jpa-api.jar中的@Transient标签使用
importjava.lang.annotation.Retention;importjava.lang.annotation.Target;importstaticjava.lang.annotation.
ElementType
.FIELD
___TheOne___
·
2023-12-23 23:37
IDEA版SSM入门到实战(Maven+MyBatis+Spring+SpringMVC) -SpringMVC @PathVariable 注解
Maven+MyBatis+Spring+SpringMVC)-SpringMVC@PathVariable注解第一章@PathVariable注解1.1@PathVariable注解位置@Target(
ElementType
.PARAMETER
ZCY5202015
·
2023-12-23 16:08
intellij-idea
maven
mybatis
JAVA开发(AOP之ProceedingJoinPoint)
例如自定义注解importjava.lang.annotation.Documented;importjava.lang.annotation.
ElementType
;importjava.lang.annotation.Retention
奋力向前123
·
2023-12-22 10:54
java
java
微服务
java 自定义注解 权限拦截
1.首先创建一个注解RequiresPermissionspackagecom.sky.annotation;importjava.lang.annotation.
ElementType
;importjava.lang.annotation.Retention
时光浅止
·
2023-12-21 23:28
java
开发语言
定制@ResponseBody
annotation):IgnoreResult该类用于忽略不使用@ResponseBodypackagecom.baizhi.mall.annotation;importjava.lang.annotation.
ElementType
衍余未了
·
2023-12-21 09:16
java
servlet
开发语言
@Autowired注解 required属性
在@Autowired注解中,有一个required属性,默认为true@Target({
ElementType
.CONSTRUCTOR,
ElementType
.METHOD,
ElementType
.PARAMETER
心潮的滴滴
·
2023-12-21 07:17
SpringBoot
java
spring
开发语言
@Order注解
@Order的注解源码解读@Retention(RetentionPolicy.RUNTIME)@Target({
ElementType
.TYPE,
ElementType
.METHOD,
ElementType
.FIELD
小小Java人
·
2023-12-21 05:37
spring注解
java
spring
注解
Order
web项目理解
以下是对代码的解释:java@Target({
ElementType
.METHOD})//注解在方法上面,指定注解的作用范围为方法@Retention(RetentionPolicy.RUNTIME)/
想要打 Acm 的小周同学呀
·
2023-12-18 21:15
JAVA技术总结
项目理解
spring自定义校验注解
自定义校验注解引入validation模块org.springframework.bootspring-boot-starter-validation新建注解@Target({
ElementType
.ANNOTATION_TYPE
码农的那些事
·
2023-12-17 18:28
Spring
Boot
springboot
Spring Boot实现自定义注解
自定义注解概述定义注解是使用@interface声明一个注解public@interfaceMyTest{}@Target、@Retention、@Documented简介@Target({
ElementType
.TYPE
小小_飞侠
·
2023-12-17 18:55
Spring干货系列
java
aop
spring
boot
反射
java中如何使用注解实现对某个dto对象实现是否为空的判断校验实例,dto对象里面包括list数据,单个字段,单条dto数据,为空提示某某字段不能为空,自定义注解可以添加多个字段,包括字段名称,提示
javaCopycodeimportjava.lang.annotation.
ElementType
;importjava.lang.annotation.Retention;importjava.lang.annotation.RetentionPolicy
gb4215287
·
2023-12-16 14:52
springboot
java
java
springboot写一个添加aop日志的自定义注解实例(入门)
javaCopycodeimportjava.lang.annotation.
ElementType
;importjava.lang.annotation.Retention;importjava.lang.annotation.RetentionP
gb4215287
·
2023-12-16 14:18
springboot
java
spring
boot
java
后端
aspectj 类中所有方法
classpath'com.hujiang.aspectjx:gradle-android-plugin-aspectjx:2.0.8'app.gradleapplyplugin:'android-aspectjx'TestEvent@Target(
ElementType
.TYPE
ATTTA
·
2023-12-15 08:51
聊聊Spring中的@Autowired注解
@Target({
ElementType
.CONSTRUCTOR,
ElementType
.METHOD,
ElementType
.PARAMETER,
ElementType
.FIELD,
ElementType
.ANNOTATION_TYPE
LG老根@
·
2023-12-06 16:55
spring
java
后端
@Target、@Retention、@Documented注解简介
源码样例:@Target(
ElementType
.METHOD)@Retention(RetentionPolicy.RUNTIME)@Documented@Inheritedpublic@interfaceMthCache
咕呱程序员
·
2023-12-06 09:57
springboot
java 注解
1.元注解——修饰注解的注解@Retention(RetentionPolicy.XXX)@Target({
ElementType
.METHOD,
ElementType
.TYPE})@Documented
不抱怨做自己
·
2023-12-05 16:13
自定义注解验证数据字典选项及bean注入问题
DictValidimportjavax.validation.Constraint;importjavax.validation.Payload;importjava.lang.annotation.
ElementType
Best_Liu~
·
2023-12-05 08:05
spring
boot
java
数据库
Spring常用注解
容器中的组件,而@Controller、@Service、@Repository也可以理解为@Component的作用,例如@Controller注解底层还是@Component,如下:@Target({
ElementType
.TYPE
kk变色龙13
·
2023-12-05 07:41
spring
java
后端
使用Spring AOP实现方法入参日志打印/请求响应日志打印
EnableAspectJAutoProxy注解org.springframework.bootspring-boot-starter-aop注解类:importjava.lang.annotation.
ElementType
怪力乌龟
·
2023-12-05 04:49
Java菜鸡笔记
java
java
spring
boot
aop
java 自定义注解
*;@Target({
ElementType
.METHOD,
ElementType
.TYPE})@Retention(RetentionPolicy.RUNTIME)@Inherited@Documentedpublic
百炼
·
2023-12-04 15:31
Spring中@DependsOn 使用详解
一、注解源码@Target({
ElementType
.TYPE,
ElementType
.METHOD})@Retention(RetentionPolicy.RUNTIME)@Documentedpublic
xdpcxq1029
·
2023-12-04 05:00
spring
java
后端
SpringBoot自定义注解防止表单重复提交
1.首先定义注解importjava.lang.annotation.Documented;importjava.lang.annotation.
ElementType
;importjava.lang.annotation.Inherited
今晚哒老虎
·
2023-12-03 03:25
SpringBoot
spring
boot
java
spring
SpringBoot注解限制接口访问次数
org.springframework.bootspring-boot-starter-aopnet.sf.ehcacheehcache2.10.62.创建一个自定义注解@ApiLimit,用于标记需要限制访问次数的接口importjava.lang.annotation.
ElementType
沐沐的木偶
·
2023-12-02 14:29
spring
boot
java
spring
Spring Aop实例
importjava.lang.annotation.
ElementType
;importjava.lang.annotation.Retention;importjava.lang.annotation.RetentionPolicy
奶盐味小圆饼
·
2023-12-02 01:06
java反射和注解2-自定义注解
下面是自定义注解的简短讲解1,自定义注解,创建一个只能修饰方法的注解@Retention(RetentionPolicy.RUNTIME)@Target(
ElementType
.METHOD)public
翻滚丷大头鱼
·
2023-12-01 16:34
java
注解
反射
java反射和注解3-仿照retrofit组装接口参数
只需要传入一个带有给定注解的接口,通过调用接口就能直接将传入的数据和注解进行结合,生成对应参数1,自定义注解对字段的修饰@Retention(RetentionPolicy.RUNTIME)@Target(
ElementType
.PARAMETER
翻滚丷大头鱼
·
2023-12-01 16:34
java
retrofit
反射
注解
动态代理
springboot自定义注解实现token认证功能
aop的依赖org.springframework.bootspring-boot-starter-aop1.自定注解CheckLogin/***检查是否登录*@author:blue*/@Target(
ElementType
.METHOD
quequnlong
·
2023-11-30 17:39
spring
boot
spring
boot
java
后端
SpringBoot自定义校验注解校验日期时间格式字符串
先定义一个注解@Target({
ElementType
.FIELD,
ElementType
.PARAMETER})@Retention(RetentionPolicy.RUNTIME)@Constraint
左边有只汪
·
2023-11-30 17:39
springboot
SpringBoot自定义注解,Springboot权限角色注解
蕃薯耀2022-04-25蕃薯耀的博客_CSDN博客一、自定义角色注解importjava.lang.annotation.Documented;importjava.lang.annotation.
ElementType
蕃薯耀
·
2023-11-30 17:38
java
蕃薯耀分享
SpringBoot
springboot
自定义注解
Java角色权限注解
spring类注解不生效
@within注解
SpringBoot自定义校验注解
Stringmessage()Class[]groups()Class[]payload()@ListValue的作用是只能接收在数组的值importstaticjava.lang.annotation.
ElementType
LiaoJiaYin
·
2023-11-30 17:28
springboot
spring
boot
java
后端
springboot整合redis+自定义注解+反射+aop实现分布式锁
best_liu*@Description:*@Date:16:132023/9/4*@Param*@return**/@Retention(RetentionPolicy.RUNTIME)@Target({
ElementType
.ME
Best_Liu~
·
2023-11-29 20:50
spring
boot
redis
分布式
Spring Boot读取配置文件的几种方式
@PropertySource解析@Target(
ElementType
.TYPE)@Retention(RetentionPo
java那点儿事
·
2023-11-29 08:24
Open Feign 源码解析(三) --- 配置体系详解
OpenFeign源码解析三配置体系配置类应用级别配置(全局)@Retention(RetentionPolicy.RUNTIME)@Target(
ElementType
.TYPE)@Documented
只因为你而温柔
·
2023-11-29 00:13
#
JAVA-SpringBoot
#
feign
SpringBoot自定义注解实现Token校验
/qq_33556185/article/details/1054202051.定义Token的注解,需要Token校验的接口,方法上加上此注解import java.lang.annotation.
ElementType
Java小咖秀
·
2023-11-27 22:22
spring
restful
instance
slf4j
nokia
java自定义注解 @Pattern 为空字符串的时候,不需校验正则表达式
注解:BlankOrPattern.javaimportjava.lang.annotation.Documented;importjava.lang.annotation.
ElementType
;importjava.lang.annotation.Retention
huahailing1024
·
2023-11-27 20:29
java
正则表达式
开发语言
上一页
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
其他