如果从其他服务调用,如何验证/ app / rest / **?

时间:2014-10-18 17:32:00

标签: jhipster

如果请求来自其他服务,是否有内置机制来验证/ app / rest / **?

1 个答案:

答案 0 :(得分:0)

您可以通过Spring安全配置执行此操作。尝试在SecurityConfiguration

中添加此配置
        .authorizeRequests()
            .antMatchers("/app/rest/**").hasAuthority(AuthoritiesConstants.ADMIN)