package com.controller;
import java.io.PrintWriter;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;
import com.entity.User;
@Controller
@RequestMapping("/check.do")
public class Validation {
@RequestMapping(params = "method=loginCheck")
public void login(HttpServletRequest request, HttpServletResponse response)
throws Exception {
// 注意:这里不能用request.getParameter("id").这不是servlet了
String tempID = request.getParameter("userId");
String tempPwd = request.getParameter("userPwd");
response.setContentType("text/html;charset=UTF-8");
PrintWriter out = response.getWriter();
String idError = "用户名请输入 mizhiwu";
String pwdError = "密码请输入mizhiwu";
String resultError = "用户已存在";
if (tempID.equalsIgnoreCase("mizhiwu") && tempPwd.equals("mizhiwu")) {
out.print("<result>");
out.print("<msg>");
out.print("OK");
out.print("</msg>");
out.print("</result>");
//提交
out.flush();
out.close();
} else {
// 将处理结果返回给客户端
out.print("<result>");
out.print("<errorMsg type='id'>");
out.print("<msg>");
out.print(idError);
out.print("</msg>");
out.print("</errorMsg>");
out.print("<errorMsg type='pwd'>");
out.print("<msg>");
out.print(pwdError);
out.print("</msg>");
out.print("</errorMsg>");
out.print("</result>");
out.flush();
out.close();
}
}
}
没有合适的资源?快使用搜索试试~ 我知道了~
spring mvc 基础笔记 源代码
共39个文件
jar:11个
prefs:5个
class:4个
4星 · 超过85%的资源 需积分: 9 13 下载量 34 浏览量
2012-02-24
10:56:11
上传
评论
收藏 3.24MB RAR 举报
温馨提示
spring mvc 基础笔记 源代码. 下载后倒入到eclipse当中。 请重新倒入Tomcat安装目录lib文件夹下的servlet-api.jar. 如果是jQuery.js文件有红色叉表示错误的话请无视。
资源推荐
资源详情
资源评论
收起资源包目录
SpringMVC.rar (39个子文件)
SpringMVC
.project 1KB
WebContent
WEB-INF
spring-configuration.xml 3KB
jsp
fail.jsp 367B
main.jsp 3KB
addUser.jsp 2KB
lib
org.springframework.beans-3.1.0.RELEASE.jar 575KB
org.springframework.core-3.1.0.RELEASE.jar 432KB
org.springframework.asm-3.1.0.RELEASE.jar 52KB
org.springframework.web.servlet-3.1.0.RELEASE.jar 559KB
jackson-core-asl-1.9.2.jar 223KB
jstl.jar 17KB
commons-logging-1.1.1.jar 59KB
org.springframework.expression-3.1.0.RELEASE.jar 172KB
standard.jar 287KB
org.springframework.web-3.1.0.RELEASE.jar 528KB
org.springframework.context-3.1.0.RELEASE.jar 810KB
web.xml 1KB
index.jsp 5KB
js
jquery.js 242KB
META-INF
MANIFEST.MF 39B
src
com
controller
Validation.java 2KB
UserController.java 2KB
LoginController.java 1KB
entity
User.java 373B
.settings
org.eclipse.wst.jsdt.ui.superType.container 49B
org.eclipse.wst.common.project.facet.core.xml 345B
org.eclipse.ltk.core.refactoring.prefs 137B
org.eclipse.wst.ws.service.policy.prefs 118B
org.eclipse.jdt.core.prefs 629B
org.eclipse.wst.jsdt.ui.superType.name 6B
org.eclipse.jst.j2ee.ejb.annotations.xdoclet.prefs 148B
org.eclipse.core.resources.prefs 212B
org.eclipse.wst.common.component 457B
.jsdtscope 503B
build
classes
com
controller
UserController.class 2KB
Validation.class 2KB
LoginController.class 2KB
entity
User.class 766B
.classpath 947B
共 39 条
- 1
资源评论
- Spinach__2012-07-27很不错,适合入门。
- gainward5552012-08-28很不错,适合入门。 .
迷之雾
- 粉丝: 1
- 资源: 6
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功