NIUCLOUD是一款SaaS管理后台框架多应用插件+云编译。上千名开发者、服务商正在积极拥抱开发者生态。欢迎开发者们免费入驻。一起助力发展! 广告
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); ~~~