Struts读书笔记..doc

  1. 1、本文档共35页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
Struts读书笔记.

Struts读书笔记 南京航空航天大学 CS 蒋俊锋 2004.5.10 框架纵览 一个在线银行的例子 这个文档中我们不必提供很强壮的安全服务。 Example 3-1. The IAuthentication Interface used by the banking application package com.oreilly.struts.banking.service; import com.oreilly.struts.banking.view.UserView; /** * Provides methods that the banking security service should implement. */ public interface IAuthentication { /** * The login method is called when a user wishes to login to * the online banking application. * @param accessNumber The account access number. * @param pinNumber The account private id number. * @returns A ValueHolder object representing the users personal data. * @throws InvalidLoginException if the credentials are invalid. */ public UserView login( String accessNumber, String pinNumber ) throws InvalidLoginException; } 因为java接口是不能被实例化的,我们需要一个类继承它。 在例子3-2中的类com.oreilly.struts.banking.service.SecurityService, 功能是验证用户,继承了接口IAuthentication.当时既然我们无需要提供任何安全服务, 我们允许任何人登陆。 Example 3-2. The SecurityService used by the banking application for authentication package com.oreilly.struts.banking.service; import com.oreilly.struts.banking.view.UserView; /** * Used by the example banking application to simulate a security service. */ public class SecurityService implements IAuthentication { /** * The login method is called when a user wishes to login to * the online banking application. * @param accessNumber The account access number. * @param pinNumber The account private id number. * @returns A ValueHolder object representing the users personal data. * @throws InvalidLoginException if the credentials are invalid. */ public UserView login(String accessNbr, String pinNbr) throws InvalidLoginException { // A real security service would check the login against a security realm // This example is hard coded to only let in 123/456 if( (accessNbr != null accessNbr.equalsIgnoreCase(123)) (pinNbr != null pinNbr.equalsIgnoreCase(456)) ){ /* Dummy a UserView for this example. * This d

文档评论(0)

dashewan + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档