- 1、本文档共35页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 5、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 6、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 7、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 8、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
51CTO-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 data/
您可能关注的文档
- 45无缝钢管厂热处理工艺.doc
- 45电磁感应现象的两类情况典型例题1.doc
- 45牛顿第三定律习题.doc
- 45t中包流场水模研究.doc
- 45电磁感应现象的两类情况集体备课.doc
- 45超声科医疗质量评价体系与考核标准(对).doc
- 4647干挂石材施工方案.doc
- 46三角函数的图像与性质(二).doc
- 4627单病种质量控制指标.doc
- 45改地下车库支护降水及基坑开挖施工组织设计.doc
- 2025-2026学年初中劳动七年级下册湘人版(2022)教学设计合集.docx
- 2025-2026学年小学信息技术重大版三年级上册-重大版教学设计合集.docx
- 《职业院校“双证书”制度实施中的学生满意度调查与分析》教学研究课题报告.docx
- 人工智能助力区域教育资源均衡配置:市场机制与政府调控的融合模式研究教学研究课题报告.docx
- 《区域大气污染联防联控机制下区域大气污染防治法律法规体系构建》教学研究课题报告.docx
- 1 《金融行业金融衍生品市场风险防范与监管政策研究》教学研究课题报告.docx
- 《量子通信技术在证券交易信息安全保障中的关键技术研究》教学研究课题报告.docx
- 高中语文批判性阅读教学与信息素养培养研究教学研究课题报告.docx
- 劳动教育在智慧教育云平台中的信息技术应用与教学效果分析教学研究课题报告.docx
- 第三节+氧化还原反应+第3课时(教学课件)化学人教版2019必修第一册.pptx
文档评论(0)