Spring Boot
great-sun
你若不会72变,谁来帮你抵挡81难
展开
-
spring中@validate注解使用
NotEmpty 是 Bean Validation(JSR-380)规范中定义的一个校验注解,用于验证被注解的元素(字段、属性、方法参数等)不为 null 且不为空字符串。@NotNull 是 Bean Validation(JSR-380)规范中定义的一个校验注解,用于验证被注解的元素(字段、属性、方法参数等)不为 null。常用的校验注解包括 @NotNull、@NotEmpty、@Size、@Min、@Max 等,它们可以帮助我们规定字段的约束条件,如非空、长度范围、最小值、最大值等。原创 2024-02-22 09:43:11 · 551 阅读 · 0 评论 -
spring mvc利用poi实现Excel文件下载、上传
注意前端也需要进行设置: processData:false,//设置ajax向后台提交参数之前,是否把参数统一转换成字符串:true–是,false–不是,默认是true。contentType:false,//设置ajax向后台提交参数之前,是否把所有的参数统一按urlencoded编码:true–是,false–不是,默认是true。2.springmvc配置信息。3.excel文件操作的工具类。原创 2022-12-12 16:03:34 · 1268 阅读 · 0 评论 -
在sprigboot中用注解的方式使用事物
1.配置mybatis的事物,配置类加上开启事物注解@EnableTransactionManagement2.在需要用到的地方加入注解 @Transactional这样就好了原创 2022-07-09 16:03:58 · 179 阅读 · 0 评论 -
spring boot 1.封装分页插件pagehelp并做统一做返回值 2.封装SQL 3.redis在mybatis里面使用(大综合)
spring boot 1.封装分页插件pagehelp并做统一做返回值 2.封装SQL 3.redis在mybatis里面使用(大综合)原创 2022-06-25 16:57:35 · 1021 阅读 · 0 评论 -
springboot集合mybatis使用pagehelper,三步学会使用pagehelper
springboot集合mybatis使用pagehelper,三步学会使用pagehelper原创 2022-06-25 15:28:06 · 462 阅读 · 0 评论 -
Spring Boot自定义拦截器(HandlerInterceptor)的使用 附加监听器和过滤器转载链接
Spring Boot自定义拦截器(HandlerInterceptor)的使用 附加监听器和过滤器转载链接原创 2022-06-25 09:01:09 · 480 阅读 · 0 评论 -
springboot利用hutool工具发送验证码到邮箱以及使用阿里云短信服务发送验证码
springboot利用hutool工具发送验证码到邮箱原创 2022-06-20 21:03:19 · 1786 阅读 · 0 评论 -
Spring Boot 定时任务 Scheduled(1. fixedDelay 2. fixedRate 3. initialDelay 4. cron Scheduled)
Spring Boot 定时任务 1. fixedDelay 2. fixedRate 3. initialDelay 4. cron原创 2022-06-17 19:50:50 · 583 阅读 · 0 评论 -
spring boot反射方法应用总结.1.获取属性的值 2.返回具体方法 3.通过反射构造对象 4.获取注解 5.判断注解是否存在 6.通过反射设置对象的值
spring boot反射方法应用总结.1.获取属性的值 2.返回具体方法 3.通过反射构造对象 4.获取注解 5.判断注解是否存在 6.通过反射设置对象的值原创 2022-06-17 19:32:36 · 1637 阅读 · 0 评论 -
SpringBoot 手写自定义 登录拦截器Starter启动器,并使用自定义的启动类
SpringBoot 手写自定义 登录拦截器Starter启动器,并使用自定义的启动类原创 2022-06-17 17:47:06 · 804 阅读 · 0 评论 -
spring boot做统一返回值,统一返回数据传给前端
spring boot做统一返回值,统一返回数据传给前端原创 2022-06-11 11:49:56 · 2102 阅读 · 3 评论