package com.test.servlet.action;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
/**
* Simple Servlet. This servlet illustrates that your servlet can be any
* subclass of HttpServlet, as long as all the classes
* in the hierarchy (and any classes they depend on) are on the classpath.
*
* @web.servlet
* display-name="Simple Servlet"
* load-on-startup="1"
* name="SimpleServlet"
*
* @web.servlet-init-param
* name="param1"
* value="value1"
*
* @web.servlet-init-param
* name="param2"
* value="value2"
*
* @web.servlet-mapping
* url-pattern="/simple/*"
*
*
* @author <a href="mailto:youremail@yourdomain.com">youremail@yourdomain.com</a>
*/
public class SimpleServlet extends HttpServlet{
/**
* Called by the server (via the service method) to allow a servlet to handle a POST request.
* The HTTP POST method allows the client to send data of unlimited length to the Web server
* a single time and is useful when posting information such as credit card numbers.
*/
public void doPost(HttpServletRequest request, HttpServletResponse response)
throws IOException, ServletException {
// just print Hi!
response.getWriter().println("Hi!");
}
protected void doGet(HttpServletRequest req, HttpServletResponse resp)
throws ServletException, IOException {
// TODO Auto-generated method stub
doPost(req, resp);
}
}
没有合适的资源?快使用搜索试试~ 我知道了~
xdoclet1 xdoclet1 spring3.0.5、struts1.3、struts2.1、 servlet
共53个文件
xml:19个
java:10个
class:10个
需积分: 10 14 下载量 100 浏览量
2011-04-11
19:56:18
上传
评论 1
收藏 32KB RAR 举报
温馨提示
XDoclet可以通过你在java源代码中的一些特殊的注释信息,自动为你生成配置文件、源代码等等,例如web、ejb的部署描述文件、config.xml配置文件、javascript校验等。本资源我在学习xdoclet过程中,总结完成的xoclet配置示例。其中包括xdoclet2与hibernate3.6的整合xdoclet1.2.3分别与spring3.0.5、struts1.3、struts2.1、 servlet的整合配置。其中还有相应的.xdt文件模板,其中struts2.1.xdt为自己写的。 需要xdoclet1.2.3 http://xdoclet.sourceforge.net/xdoclet/install.html xdoclet2 http://xdoclet.codehaus.org/
资源推荐
资源详情
资源评论
收起资源包目录
sshXdocletDemo.rar (53个子文件)
sshXdocletDemo
.project 1KB
bin
.mymetadata 316B
build_hibernate3.xml 2KB
WebRoot
WEB-INF
.struts-config.mex 76B
web.xml 4KB
struts-config.xml 2KB
lib
classes
com
test
struts1
action
UserAction.class 1KB
form
UserForm.class 1KB
servlet
action
SimpleServlet.class 1004B
struts2
action
LoginAction.class 1KB
CheckAction.class 1KB
ValidateAction.class 1KB
hibernate3
model
User.class 1KB
User.hbm.xml 507B
spring3
beans
XdocletMain.class 904B
Bean1.class 286B
Bean2.class 286B
appcontext_beans.xml 1KB
struts2.1.xml 2KB
actions.html 257B
struts.xml 202B
hibernate.cfg.xml 886B
views.properties 135B
index.jsp 829B
META-INF
MANIFEST.MF 36B
build_struts1.3.xml 2KB
test.xml 1KB
build_servlet.xml 2KB
merge
struts.xml 1KB
.myeclipse
build_spring3.xml 2KB
src
com
test
struts1
action
UserAction.java 1KB
form
UserForm.java 2KB
servlet
action
SimpleServlet.java 2KB
struts2
action
LoginAction.java 1KB
CheckAction.java 1KB
ValidateAction.java 1KB
hibernate3
model
User.java 1KB
User.hbm.xml 507B
spring3
beans
Bean2.java 203B
Bean1.java 230B
XdocletMain.java 888B
appcontext_beans.xml 1KB
struts2.1.xml 2KB
actions.html 257B
struts.xml 202B
hibernate.cfg.xml 886B
views.properties 135B
.mystrutsdata 240B
template
custom_spring_xml.xdt 8KB
struts2.1.xdt 3KB
struts_config_xml.xdt 9KB
build_struts2.1.xml 950B
.classpath 737B
共 53 条
- 1
资源评论
大哥NB
- 粉丝: 4
- 资源: 14
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- ORACLE数据库管理系统体系结构中文WORD版最新版本
- Sybase数据库安装以及新建数据库中文WORD版最新版本
- tomcat6.0配置oracle数据库连接池中文WORD版最新版本
- hibernate连接oracle数据库中文WORD版最新版本
- MyEclipse连接MySQL的方法中文WORD版最新版本
- MyEclipse中配置Hibernate连接Oracle中文WORD版最新版本
- MyEclipseTomcatMySQL的环境搭建中文WORD版3.37MB最新版本
- hggm - 国密算法 SM2 SM3 SM4 SM9 ZUC Python实现完整代码-算法实现资源
- SQLITE操作入门中文WORD版最新版本
- Sqlite操作实例中文WORD版最新版本
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功