合规国际互联网加速 OSASE为企业客户提供高速稳定SD-WAN国际加速解决方案。 广告
Spring Security已添加Jackson Support以保持Spring Security相关类的持久性。 这可以提高在使用分布式会话(即会话复制,Spring会话等)时序列化Spring Security相关类的性能。 要使用它,请将`JacksonJacksonModules.getModules(ClassLoader)`注册为Jackson Modules。 ~~~ ObjectMapper mapper = new ObjectMapper(); ClassLoader loader = getClass().getClassLoader(); List<Module> modules = SecurityJackson2Modules.getModules(loader); mapper.registerModules(modules); // ... use ObjectMapper as normally ... SecurityContext context = new SecurityContextImpl(); // ... String json = mapper.writeValueAsString(context); ~~~