1
認証にはApplication Server(Weblogic)セキュリティコンテキストを使用する必要があり、認可にはSpringセキュリティを使用する必要があるという特殊なケースがあります。私はSpring Boot
を使ってアプリケーションを作成しています。 (通常web.xml
に含まれるであろう)は次のように私は、セキュリティ制約を追加するにはどうすればよいSpringブートでweb.xmlセキュリティ制約を使用する
:
<security-constraint>
<web-resource-collection>
<web-resource-name>portal</web-resource-name>
<description>This is the protected area of the application.</description>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<auth-constraint>
<description>Requires users to be authenticated but does not require them to be authorized.</description>
<role-name>*</role-name>
</auth-constraint>
<user-data-constraint>
<description>Encryption is not required for this area.</description>
<transport-guarantee>NONE</transport-guarantee>
</user-data-constraint>
</security-constraint>
私はこれが私のWeblogic
サーバから処理する必要があることを忘れないでくださいとないSpring Security