tomcat에서 기본 인증을 사용하는 방법
1. 「web.xml」에 이하의 기재를 추가한다.
\apache-tomcat-8.5.15\webapps\ROOT\WEB-INF\web.xml
or
\apache-tomcat-8.5.15\conf\web.xml
■기재 내용
<security-constraint>
<web-resource-collection>
<web-resource-name>User Basic Auth</web-resource-name>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<auth-constraint>
<role-name>role1</role-name>
</auth-constraint>
</security-constraint>
<login-config>
<auth-method>BASIC</auth-method>
<realm-name>User Basic Auth</realm-name>
</login-config>
<security-role>
<role-name>role1</role-name>
</security-role>
2. 「tomcat-users.xml」에 이하의 기재를 한다.
\apache-tomcat-8.5.15\conf\tomcat-users.xml
■기재 내용
<role rolename="role1"/>
<user username="sample" password="test" roles="role1"/>
3. Tomcat을 다시 시작합니다.
Reference
이 문제에 관하여(tomcat에서 기본 인증을 사용하는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/KOJI-YAMAMOTO/items/c1dd9ad924ba197a9a79
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
\apache-tomcat-8.5.15\webapps\ROOT\WEB-INF\web.xml
or
\apache-tomcat-8.5.15\conf\web.xml
■기재 내용
<security-constraint>
<web-resource-collection>
<web-resource-name>User Basic Auth</web-resource-name>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<auth-constraint>
<role-name>role1</role-name>
</auth-constraint>
</security-constraint>
<login-config>
<auth-method>BASIC</auth-method>
<realm-name>User Basic Auth</realm-name>
</login-config>
<security-role>
<role-name>role1</role-name>
</security-role>
2. 「tomcat-users.xml」에 이하의 기재를 한다.
\apache-tomcat-8.5.15\conf\tomcat-users.xml
■기재 내용
<role rolename="role1"/>
<user username="sample" password="test" roles="role1"/>
3. Tomcat을 다시 시작합니다.
\apache-tomcat-8.5.15\conf\tomcat-users.xml
■기재 내용
<role rolename="role1"/>
<user username="sample" password="test" roles="role1"/>
3. Tomcat을 다시 시작합니다.
Reference
이 문제에 관하여(tomcat에서 기본 인증을 사용하는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/KOJI-YAMAMOTO/items/c1dd9ad924ba197a9a79텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)