Spring Security中JSON的主要对象

时间:2015-11-19 14:17:20

标签: java json spring-mvc spring-security

在构建演示应用程序时,我在登录和下一个主页时使用了JSP。在Authenticator的“authenticate”函数之后将“principal”对象返回到home JSP页面。 我用了these tags to fetch。现在,通过这种方式变得越来越复杂,因为它不支持JSTL或Anugular。所以我需要知道如何在身份验证完成后将Principal对象转换为JSON。请帮帮我。

1 个答案:

答案 0 :(得分:0)

导入com.fasterxml.jackson.databind.ObjectMapper;

    ObjectMapper mapper = new ObjectMapper();
    String user = mapper.writeValueAsString(principal);
    System.out.println(user);