spring springboot之Date格式化
问题场景: 在springboot应用中,@RestController层注解的json默认序列化中,日期格式默认为:2018-06-17T07:24:07.430+0000。 日常需求中,往往需要将日期转化为 修改方法: ...
基础 (基础)Promise类方法resolve()
resolve()可直接返回Promise成功对象 把一个普通对象转为Promise对象 手动实现Promise对象 // 转成Promise对象function foo() { const obj = { name: "why" } return new Promise((resolve...
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...
mybatis 【mybatis】查询数据库某些字段为null的解决方法
在自己写的mapper.xml文件时,查询数据库一些字段正常、一些字段为null。 经过对比发现为null的都是采用了 “_” 的命名字段,比如last_login_time。 因为我的pojo和mapper文件都...
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是无法自定义返回的信息,我们需要重写过滤...
java javax.xml.bind.JAXBException: Implementation of JAXB-API has not been found on module path
javax.xml.bind.JAXBException: Implementation of JAXB-API has not been found on module path or classpath. at javax.xml.bind.ContextFinder.newInstance(ContextFinder.java:177) ~ at...
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...