Shiro-SpringBoot icon indicating copy to clipboard operation
Shiro-SpringBoot copied to clipboard

shiro 框架的构建以及与 JWT 的整合

Results 4 Shiro-SpringBoot issues
Sort by recently updated
recently updated
newest added

Bumps shiro-spring from 1.3.2 to 1.7.1. [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.apache.shiro:shiro-spring&package-manager=maven&previous-version=1.3.2&new-version=1.7.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...

dependencies

Bumps shiro-spring from 1.3.2 to 1.7.1. [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.apache.shiro:shiro-spring&package-manager=maven&previous-version=1.3.2&new-version=1.7.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...

dependencies

发现 ShiroConfig 这个系统配置会引起 spring 的 @Transactional 声明式事务失效 。 多次测试 但是没找到具体原因

老哥, JWTFilter.java中的这段: /** * 对跨域提供支持 */ @Override protected boolean preHandle(ServletRequest request, ServletResponse response) throws Exception { HttpServletRequest httpServletRequest = (HttpServletRequest) request; HttpServletResponse httpServletResponse = (HttpServletResponse) response; httpServletResponse.setHeader("Access-control-Allow-Origin", httpServletRequest.getHeader("Origin")); httpServletResponse.setHeader("Access-Control-Allow-Methods", "GET,POST,OPTIONS,PUT,DELETE");...