微信小程序 Session 失效 微信小程序,前端请求后端,中间多了个微信服务器,所以请求的流程就是 页面--微信服务器--目标服务器 这就导致了一个问题 session 每次请求都是一个新的会话 解决办法 : 项目搭建使用的是 maven + spring boot + spring data jpa @WebListener public class MySessionListener implements HttpSessionListener { @Override public voi
在AuthorizationServerConfigurerAdapter,重写一个TokenServices,注意这里的@Primary 非常重要,否则会有3个同类型的Bean,无法注入,会抛出以下异常 org.springframework.beans.factory.NoUniqueBeanDefinitionException: No qualifying bean of type 'org.springframework.security.oauth2.provider.token.R
var len = window.location.href.indexOf("?"); if(len>0){ window.location.href=window.location.href.substring(0,len)+"?"+Math.random(); }else{ window.location.href=window.location.href+"?"+Math.random(); }