spring Springboot集成Oracle
Springboog集成oracle数据源(原先已经配置druid项目可以跑起来) 1:集成坐标 <dependency> <groupId>com.oracle</groupId> <artifactId>ojdbc6...
spring 使用Vue+ElementUI+Axios+SpringBoot实现文件上传
网上的很多上传文件教程基本上都是采用了在action那里加上后端请求的路径,直接提交到后端,但是我由于后端设置了token,不能这样子,必须自己用axios请求。 1.项目后端使用的是SpringBoot...
spring springboot之Date格式化
问题场景: 在springboot应用中,@RestController层注解的json默认序列化中,日期格式默认为:2018-06-17T07:24:07.430+0000。 日常需求中,往往需要将日期转化为 修改方法: ...
spring 重点---spring security oauth2 自定义client客户端,实现跳过clientId认证
@Configuration @EnableAuthorizationServer public class AuthorizationServerConfig extends AuthorizationServerConfigurerAdapter { @Autowired &...
spring SpringSecurity oauth2.0 token自动续期
SpringSecurity oauth2.0 token自动续期 一、token 续期 spring security oauth2.0 默认 token 生成机制是没有为token 失效自动续期的。  ...
spring 重点--spring-security实现的token授权
在我的用户密码授权文章里介绍了spring-security的工作过程,不了解的同学,可以先看看用户密码授权这篇文章,在用户密码授权模式里,主要是通过一个登陆页进行授权,然后把授权对象写到ses...
spring springboot+Oauth2——自定义AuthenticationManager和认证path
本人在工作中需要构建这么一个后台框架,基于springboot,登录时认证使用自定义AuthenticationManager;同时支持Oauth2访问指定API接口,认证时的AuthenticationManager和登录规则不同。在研...
spring Spring Cloud OAuth2 实现Bad client credentials异常自定义信息返回
默认情况下申请令牌访问oauth/token未携带client_secret参数时会返回Bad client credentials 如果直接通过AuthenticationEntryPoint是无法自定义返回的信息,我们需要重写过滤...
spring springboot整合oauth2
1、pom.xml <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" x...
spring 重点--idea下gradle构建的spring项目dao层xml不识别问题
from: http://blog.csdn.net/littleSONGJIAN/article/details/73225066 说明:项目是idea、gradle、springboot和mybatis构建的。 问题:点击gradle的classes任务后,在buil...