SpringBoot
SpringBoot专栏
「已注销」
这个作者很懒,什么都没留下…
展开
-
解决SpringSecurity权限拦截造成的CORS跨域问题
关于什么是跨域,可以看一下阮一峰的 跨域资源共享 CORS 详解进入正题一般我们在开发前后端分离项目时,需要进行跨域配置,但是如果我们集成了SpringSecurity做安全校验,只配置跨域是不行的,还需要配置一下SpringSecurity使其支持CORS。@Overrideprotected void configure(HttpSecurity http) throws Exception { http // by default uses a Bean by the原创 2020-12-07 18:39:48 · 7051 阅读 · 2 评论 -
spring-boot-starter家族成员简介
以下应用程序starters是Spring Boot在org.springframework.boot组下提供的:名称描述spring-boot-starter核心Spring Boot starter,包括自动配置支持,日志和YAMLspring-boot-starter-actuator生产准备的特性,用于帮我们监控和管理应用spring-boot-sta...原创 2019-12-17 23:21:17 · 152 阅读 · 0 评论 -
Spring Boot Maven打包错误:Failed to execute goal org.springframework.boot:spring-boot-maven-plugin
原因分析spring-boot 使用 maven install 时总会报错:Failed to execute goal org.springframework.boot:spring-boot-maven-plugin ,导致错误的原因是 pom.xml 中引入了如下配置: <build> <plugins> <plugin> <gro...原创 2019-12-17 21:46:17 · 8678 阅读 · 0 评论 -
Mybatis-plus实现分页查询
package com.nathan.lute.config;import com.baomidou.mybatisplus.extension.plugins.PaginationInterceptor;import org.mybatis.spring.annotation.MapperScan;import org.springframework.context.annotation...原创 2019-11-26 21:31:19 · 554 阅读 · 0 评论 -
SpringBoot集成JSR-303,通过@NotNull,@NotEmpty,@Email等注解进行Java Bean字段值验证
一、前言搭建springboot项目,我们都是采用的Restful接口,那么问题来了,当前端调用接口或者是其他项目调用时,我们不能单一靠调用方来控制参数的准确性,自己也要对一些非空的值进行判定。注解所用包:import javax.validation.constraints.*;二、常用的校验注解所在包(注意别导错包):import javax.validation.constrai...原创 2019-11-26 19:43:05 · 2496 阅读 · 0 评论