简介:struts2是一个典型的mvc架构.利用它可是方便的实现某些功能. struts2 的工作流程图以及动态的action:浏览器请求经过web容器,进入到struts2过滤器,然后搜索匹配,如果有与之对应的action对象,就会调用action对象的execut()方法,并根据处理的结果返回....
分类:
编程语言 时间:
2014-06-21 09:05:17
阅读次数:
247
n a^o7 !题目:http://acm.sdut.edu.cn/sdutoj/problem.php?action=showproblem&problemid=2413Time Limit: 1000MS Memory limit: 65536K题目描写叙述All brave and intel...
分类:
其他好文 时间:
2014-06-21 07:11:15
阅读次数:
255
JMM规范:The rules for happens-before are:Program order rule. Each action in a thread happens-before every action in that thread that comes later in the ...
分类:
其他好文 时间:
2014-06-21 06:49:15
阅读次数:
350
在上一篇"ASP.NET MVC请求处理管道生命周期的19个关键环节(7-12) ",体验了7-12关键环节,本篇继续。 ⒀当请求到达UrlRoutingModule的时候,UrlRoutingModule取出请求中的Controller、Action等RouteData信息,与路由表中的所有规则进...
分类:
Web程序 时间:
2014-06-20 23:48:57
阅读次数:
436
struts配置如下:1 2 3 4 action中的代码如下: 1 package com.sides.operation.exportExcel; 2 3 4 import java.io.IOExcep...
分类:
其他好文 时间:
2014-06-20 21:56:55
阅读次数:
290
最近遇到一个需求涉及存储过程,被突然问题到如何同步问题问到了,赶紧补课学习一下。首先,先看一下trigger、procedure和event的定义都是什么?trigger:触发器是一个被指定关联到一个表的数据对象,当对个表的特别事件出现时,它被激活。procedure:是一组为了完成特定功能的SQL...
分类:
其他好文 时间:
2014-06-20 21:20:34
阅读次数:
254
接着上一篇:MVC控制器的激活过程一、代码现行,该伪代码大致解析了Action的执行的过程try { Run each IAuthorizationFilter's OnAuthorization() method if(none of the IAuthorizationFilte...
分类:
Web程序 时间:
2014-06-20 20:26:38
阅读次数:
234
原文地址http://www.cnblogs.com/liukemng/p/3726897.html在系列(2)中我们展示了一个简单的get请求,并返回了一个简单的helloworld页面。本篇我们来学习如何来配置一个action的url映射规则。在系列(2)中我们在HelloWorldContro...
分类:
编程语言 时间:
2014-06-20 19:51:59
阅读次数:
340
东西都上传到这里了:https://github.com/RexKang/Zabbix/tree/master/OS/Linux-disk-discovery 需要用到的东西:Zabbix的LLD:https://www.zabbix.com/documentation/2.0/manual/dis...
分类:
系统相关 时间:
2014-06-20 19:30:34
阅读次数:
393
Oracle没有自增字段这样的功能,但是通过触发器(trigger)和序列(sequence)可以实现。先建一个测试表了:create table userlogin( id number(6) not null, name varchar2(30) not null primary key)tab...
分类:
数据库 时间:
2014-06-20 18:51:30
阅读次数:
277