上篇我们以登录为例讲解了struts配置,实现了使用struts框架进行登录的示例。一些名词已经在脑海中飘荡了。
上一篇提出了问题,使用Struts框架比不使用struts框架的好处在哪里的问题。以及由此讲述了静态ActionForm和动态ActionForm。本篇就第一个问题,以一个示例对用户信息的增删改查来展示基本的MVC框架到strutsMVC的过程。
版本一:
首先是创建一个jsp索...
分类:
Web开发 时间:
2014-02-10 14:57:51
收藏:
0 评论:
0 赞:
0 阅读:
487
上篇我们以登录为例讲解了struts配置,实现了使用struts框架进行登录的示例。一些名词已经在脑海中飘荡了。
ActionServlet:struts的控制器,负责截取URL或分发。提供Model(模型层)和View(视图层)使用,因此可将它看作是模型和视图之间的中介。
ActionForm:用于封装用户的请求参数,而请求参数是通过JSP页面的表单域传递过来的。
Action:用户请求和...
分类:
其他 时间:
2014-02-10 13:42:51
收藏:
0 评论:
0 赞:
0 阅读:
329
A new mighty weapon has just been developed, which is so powerful that it can attack a sector of indefinite size, as long as the center of the circle containing the sector is the location of the weapo...
分类:
其他 时间:
2014-02-10 13:37:51
收藏:
0 评论:
0 赞:
0 阅读:
460
Once upon a time there was a greedy King who ordered his chief Architect to build a field for royal cricket inside his park. The King was so greedy, that he would not listen to his Architect's proposa...
分类:
其他 时间:
2014-02-10 14:42:51
收藏:
0 评论:
0 赞:
0 阅读:
398
Urban Elevations
An elevation of a collection of buildings is an orthogonal projection of the buildings onto a vertical plane. An external elevation of a city would show the skyline and...
分类:
其他 时间:
2014-02-10 14:02:51
收藏:
0 评论:
0 赞:
0 阅读:
347
The president of the Galactic Federation has recently decided that all planets of the galaxy must establish hyper-radio centers to broadcast their programs. To ensure the process, the government has s...
分类:
其他 时间:
2014-02-10 15:37:51
收藏:
0 评论:
0 赞:
0 阅读:
374
类别(Category)的基本概念
封装是面向对象的一个特征,OC也不例外,但是有的时候我们会碰到这样的一种情况,不如我封装了一个类,
不想再动它了,可是随着程序功能的增加,需要在那个类中增加一个小小的方法,这是我们就不必再那个类中
做修改或者在定义一个子类,只需要在用到的地方随手添加一个该类的类别(Category)即可。
(1)在类别中定义的方法,会成...
分类:
其他 时间:
2014-02-10 14:37:51
收藏:
0 评论:
0 赞:
0 阅读:
374
协议(Protocol)的基本概念
协议的声明看起来比较类似于Java中一个类的接口,但是和接口不同的是:协议没有父类也不能定义实例变量。
协议是一种特殊的程序设计结构,用于声明专门被别的类实现的方法。协议在以下场合非常有用:
需要由别的类实现的方法 声明未知类的接口 两个类之间的通信
协议的基本特点...
分类:
其他 时间:
2014-02-10 13:57:51
收藏:
0 评论:
0 赞:
0 阅读:
279
代理设计模式的基本概念
代理是指一个对象提供机会会对另一个对象中行为发生变化时做出的反应。
总而言之,代理设计默认的基本思想----两个对象协同解决问题,通常运用于对象间通信。
代理设计模式的基本特点
简化了对象的行为,最大化减小对象之间的耦合度 使用代理,一般来说无需子类化 简化了我们应用程序的开发,既容易实现,而且灵活...
分类:
其他 时间:
2014-02-10 16:02:51
收藏:
0 评论:
0 赞:
0 阅读:
416
cocoa中的内存管理机制--引用计数
Cocoa中提供了一个机制来实现上面的逻辑模型,它被称为“引用计数”或者“保留计数”。引用计数的数值表示对象有几个“人”在使用它
每一个对象都拥有一个引用计数(retain count)当对象被创建的时候,引用计数的值为1当发送retain消息时,该对象的引用计数加1,该对象的引用计数为2当向这个对象发送release消息...
分类:
其他 时间:
2014-02-10 16:25:02
收藏:
0 评论:
0 赞:
0 阅读:
383
Given a binary tree, flatten it to a linked
list
in-place我的想法是,先将左子树flatten,然后右子树flatten,然后将左子树的结果移到root.right,然后将右子树接在左子树后面。但是总是超时。
1 public static v...
分类:
其他 时间:
2014-02-10 13:32:51
收藏:
0 评论:
0 赞:
0 阅读:
376
Given a collection of numbers, return all
possible permutations.For example,[1,2,3] have the following
permutations:[1,2,3], [1,3,2], [2,1,3], [2,3,1]...
分类:
其他 时间:
2014-02-10 13:27:51
收藏:
0 评论:
0 赞:
0 阅读:
327
云计算技术:这里只是列出我所知道的,希望大家对云计算技术有所了解:一首先让大家明白什么是云端,所谓云端需要两层理解(1)服务不在本地,这一层可以理解为服务器(2)它和普通的服务器是不一样的,这些云端的服务器的资源是共享的,一旦一个服务器不能承受,将会把任务分配给其他机器。二、云技术与其他技术的区别:...
分类:
其他 时间:
2014-02-10 13:22:51
收藏:
0 评论:
0 赞:
0 阅读:
382
Given a collection of numbers that might
contain duplicates, return all possible unique permutations.For
example,[1,1,2]have the following unique perm...
分类:
其他 时间:
2014-02-10 13:17:51
收藏:
0 评论:
0 赞:
0 阅读:
341
http://www.pieterg.com/2013/4/aspnet-mvc-under-the-hood-part-3
分类:
Web开发 时间:
2014-02-10 13:12:51
收藏:
0 评论:
0 赞:
0 阅读:
356
Given a collection of numbers, return all
possible permutations.For example,[1,2,3]have the following
permutations:[1,2,3],[1,3,2],[2,1,3],[2,3,1],[3,...
分类:
其他 时间:
2014-02-10 13:07:51
收藏:
0 评论:
0 赞:
0 阅读:
270
http://www.agilesharp.com/u/yanyangtian/Blog.aspx/t-196IIS负载均衡-Application
Request Route详解第二篇:创建与配置Server Farmhttp://www.cnblogs.com/yanyangtian/archi...
分类:
其他 时间:
2014-02-10 12:57:51
收藏:
0 评论:
0 赞:
0 阅读:
364
Given a linked list, remove thenthnode from the
end of list and return its
head.原来的想法很简单,就是先扫描一遍list,判断list的长度,然后从头重新扫描,计算好走多少不,找到要删除的node的前一个node,然后把...
分类:
其他 时间:
2014-02-10 13:02:51
收藏:
0 评论:
0 赞:
0 阅读:
392
UINavigationController常见属性1.一般情况下,导航栏上面显示什么内容,由当前栈顶控制器的navigationItem属性决定*
navigationItem.title : 导航栏的中间标题(也可以直接通过控制器的title属性设置标题)* navigationItem.tit...
分类:
其他 时间:
2014-02-10 12:52:51
收藏:
0 评论:
0 赞:
0 阅读:
330
nocow上的分析,发现这规律的人实在是太厉害了,bfs或者dfs还没试过,照着这思路写最后还是有点问题,1,2时有点特殊,看了下别人的代码过了数据分析Usaco在这题上并没有指明不可以用分析法,而且dfs肯定TLE,所以我们取巧。先观察样例数据,如果把还没移动的那一步也算上,那么空格的位置为4
3...
分类:
其他 时间:
2014-02-10 12:47:51
收藏:
0 评论:
0 赞:
0 阅读:
412