Vaadin に移行する必要がある古い Web アプリケーションがあります。
古いアプリには、ユーザーにログインとパスワードを求めるページがあります。
JSP ページは次のようになります。
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ru" lang="ru">
<%@ page contentType="text/html;charset=UTF-8" language="java" pageEncoding="utf-8"%>
[...]
<head>
<title>Some product</title>
<link rel="stylesheet" type="text/css" href="<%=request.getContextPath()+"/css/styles.css"%>" />
</head>
<body>
<%@ include file="inc/main-navigation.jsp"%>
<form action="j_security_check" method="post" style="margin:0px">
[...]
<input type="text" style="width:100%" name="j_username" />
<input type="password" name="j_password" />
</form>
</body>
</html>
web.xml
次のエントリが含まれます。
<login-config>
<auth-method>FORM</auth-method>
<realm-name>Some product</realm-name>
<form-login-config>
<form-login-page>/login.jsp</form-login-page>
<form-error-page>/login_fail.jsp</form-error-page>
</form-login-config>
</login-config>
これは、認証に失敗した場合、ユーザーが page に誘導されることを意味しますlogin_fail.jsp
。
次のエントリを見つけたcontext.xml
ファイルで、指定されたデータベースから正しいログインとパスワードを読み取り、追加のコードなしでチェックを実行する Tomcat の内部メカニズムがあると結論付けました。
<Context path="/myapp">
<Realm className="org.apache.catalina.realm.JDBCRealm" driverName="com.microsoft.sqlserver.jdbc.SQLServerDriver"
connectionURL="[...]"
userTable="[...]" userNameCol="user_name" userCredCol="user_pass"
userRoleTable="[...]" roleNameCol="role_name"/>
</Context>
Vaadin アプリケーションには、テキスト フィールドとボタンの両方を備えた UI があります。
public class BookkeepingView extends VerticalLayout implements View {
public BookkeepingView()
{
VerticalLayout contentPanel = new VerticalLayout();
contentPanel.setStyleName("body");
contentPanel.addComponent(getHeaderPanel());
contentPanel.addComponent(getLoginPanel());
contentPanel.addComponent(getFooterPanel());
addComponent(contentPanel);
}
private Component getHeaderPanel() {
return createCustomLayoutPanel("main-navigation");
}
private Component getFooterPanel() {
return createCustomLayoutPanel("copyright");
}
private CustomLayout getLoginPanel() {
Panel panel = new Panel();
panel.setSizeUndefined();
addComponent(panel);
CustomLayout customLayoutPanel = new CustomLayout("login");
final TextField userName = new TextField();
customLayoutPanel.addComponent(userName, "j_username");
final PasswordField password = new PasswordField();
customLayoutPanel.addComponent(password, "j_password");
final Button loginButton = new Button(I18n.l("bookkeeping_login_button"));
customLayoutPanel.addComponent(loginButton, "login");
loginButton.addClickListener(new Button.ClickListener() {
@Override
public void buttonClick(Button.ClickEvent clickEvent) {
loginButtonPressed();
}
});
return customLayoutPanel;
}
private void loginButtonPressed() {
Notification.show("Login button pressed", Notification.Type.TRAY_NOTIFICATION);
}
private CustomLayout createCustomLayoutPanel(final String aHtmlFileName) {
Panel panel = new Panel();
panel.setSizeUndefined();
addComponent(panel);
CustomLayout customLayoutPanel = new CustomLayout(aHtmlFileName);
return customLayoutPanel;
}
@Override
public void enter(ViewChangeListener.ViewChangeEvent event) {
}
}
ユーザーがボタンを押したとき(メソッドloginButtonPressed
が実行されたとき)、私はしたい
- テキスト フィールドに入力された資格情報を確認
userName
しpassword
、 - 資格情報が間違っている場合、通知ボックスを表示し、
- それらが正しい場合、別の UI (ビュー) を開きます。
クレデンシャルを確認するために、Vaadin アプリケーションが Tomcat メカニズムにアクセスできるようにするにはどうすればよいですか (つまり、Vaadin アプリケーションは古いアプリとまったく同じ方法でクレデンシャル チェックを実行する必要があります)。
で指定されたデータベースに従って、ユーザー名x
とパスワードが有効かどうかを確認できるコードは?y
context.xml
更新 1 (2013 年 5 月 11 日):領域ベースの認証の使用方法に関する説明が見つかりました。
しかし、私は問題に遭遇しました:
この例のアプリケーション サーブレットは extendsを使用していますがcom.vaadin.terminal.gwt.server.AbstractApplicationServlet
、これは私の Vaadin 7 プロジェクトでは利用できません。
@WebServlet(urlPatterns={"/ui/*", "/VAADIN/*"})
public class DemoAppServlet extends AbstractApplicationServlet {
更新 2 (2013 年 5 月 11 日 15:53):
私は可能な限り簡単な方法で認証を実装しようとしました:
1) BASIC 認証メカニズムを使用します。2)すべてのVaadin ページでユーザーがログインする必要があるように Web アプリを構成します。
これを実現するために、次のフラグメントを に追加しましたweb.xml
。
<servlet-mapping>
<servlet-name>VaadinDemoApp</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
<security-constraint>
<display-name>VaadinDemoApplicationConstraint</display-name>
<web-resource-collection>
<web-resource-name>Vaadin application</web-resource-name>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<auth-constraint>
<role-name>admin</role-name>
<role-name>viewer</role-name>
</auth-constraint>
</security-constraint>
<login-config>
<auth-method>BASIC</auth-method>
<realm-name>Protected page</realm-name>
</login-config>
<security-role>
<role-name>admin</role-name>
</security-role>
<security-role>
<role-name>viewer</role-name>
</security-role>
アプリケーションにアクセスすると資格情報ダイアログ ボックスが表示されますが、正しい資格情報を入力して [OK] を押すと、同じダイアログ ボックスが再び表示されます。