jhipster|Full authentication is required to access this resource Jhipster框架

原因 【jhipster|Full authentication is required to access this resource Jhipster框架】是账号没有登录进行访问接口出现的接口权限问题
解决 修改权限
消除访问此资源需要完全的身份验证
修改 SecurityConfiguration 文件

.antMatchers("/api/**").authenticated() .antMatchers("/management/health").permitAll()

1.第一个是接口
api/** 是全部接口的意思
2.第二个是授权
permitAll 允许全部访问

    推荐阅读