SAMLParser parser = new SAMLParser()创建成功需要引入哪个依赖包和版本号
时间: 2024-04-06 14:32:41 浏览: 58
Node.js中package.json中库的版本号(~和^)
SAMLParser 的依赖包和版本号取决于具体的 SAML 解析器实现。一些常见的 SAML 解析器实现和对应的依赖包如下:
- OpenSAML: org.opensaml:opensaml-core:4.0.1
- Spring Security SAML: org.springframework.security.extensions:spring-security-saml2-core:1.0.10.RELEASE
- Shibboleth SAML Toolkit: net.shibboleth.utilities:java-support:10.0.0
你需要根据你使用的具体 SAML 解析器实现,引入对应的依赖包和版本号。
阅读全文