企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持知识库和私有化部署方案 广告
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); ~~~