0
我想在java ee項目中實現基本身份驗證,但我找不到默認的用戶名和密碼(如果有的話)。GlasshFish基本身份驗證默認用戶名和密碼
我的web.xml文件看起來是這樣的:
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
<context-param>
<param-name>javax.faces.PROJECT_STAGE</param-name>
<param-value>Development</param-value>
</context-param>
<servlet>
<servlet-name>Faces Servlet</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>/faces/*</url-pattern>
</servlet-mapping>
<session-config>
<session-timeout>
30
</session-timeout>
</session-config>
<welcome-file-list>
<welcome-file>faces/index.xhtml</welcome-file>
</welcome-file-list>
<security-constraint>
<display-name>Constraint1</display-name>
<web-resource-collection>
<web-resource-name>view.xml</web-resource-name>
<description/>
<url-pattern>/faces/view.xhtml</url-pattern>
</web-resource-collection>
<auth-constraint>
<description/>
<role-name>user</role-name>
</auth-constraint>
</security-constraint>
<login-config>
<auth-method>BASIC</auth-method>
<realm-name>Login</realm-name>
<form-login-config>
<form-login-page>/index.xhtml</form-login-page>
<form-error-page>/index.xhtml</form-error-page>
</form-login-config>
</login-config>
<security-role>
<description/>
<role-name>user</role-name>
</security-role>
</web-app>
我的索引頁是一個登錄表單應該啓動會議在成功login..this有點兒工作,它讓我看到了下一個頁面..現在,如果我沒有瀏覽索引頁並輸入第二頁的網址,則會彈出一個登錄窗口,但無論我在那裏輸入什麼內容,它都不會讓我看到該頁面...我試過admin-adminadmin,admin - 通過,管理員管理員和其他人,但沒有什麼作品..
任何幫助將非常感謝!謝謝!!!
你沒有回答你的問題... – Ted 2014-02-26 15:15:06