WEB开发网
开发学院软件开发Java Struts 2.1.6 精简实例系列教程(6):重写用户登录... 阅读

Struts 2.1.6 精简实例系列教程(6):重写用户登录模块(整合Jquery+JSON)

 2009-09-23 00:00:00 来源:WEB开发网   
核心提示: 好,Show一下修改后的LoginAction.java,Struts 2.1.6 精简实例系列教程(6):重写用户登录模块(整合Jquery+JSON)(3),代码如下:packagecn.simple.action;importjava.io.IOException;importjavax.

好,Show一下修改后的LoginAction.java,代码如下:

package cn.simple.action;
import java.io.IOException;
import javax.servlet.http.HttpServletResponse;
import org.apache.struts2.ServletActionContext;
import org.apache.struts2.convention.annotation.Result;
import org.apache.struts2.convention.annotation.Results;
import org.json.JSONObject;
import cn.simple.manager.UserManager;
import cn.simple.pojo.User;
import com.opensymphony.xwork2.ActionSupport;
//@Results({
//    @Result(name="success", location="admin/index.action", type="redirect"),
//    @Result(name="input", location="loginform.jsp", type="dispatcher")
//})
public class LoginAction extends ActionSupport {
    private String json;    //JSON字符串,JS与Action传递数据的载体
    public String getJson() {
        return json;
    }
    public void setJson(String json) {
        this.json = json;
    }
    /** *//**
     * 登录验证
     * @throws Exception
     */
    public void valid() throws Exception {
        
        JSONObject jsonObj = new JSONObject(json);    //将JSON格式的字符串构造成JSON对象
        String loginName = jsonObj.getString("loginName"); //获取JSON对象中的loginName属性的值
        String password = jsonObj.getString("password");    //获取JSON对象中的password属性的值
        
        User user = UserManager.selectUserByLoginName(loginName);    //查询是否有用户名存在
        if(user==null){
            //此时的JSON对象,有两个属性suc和msg,其中suc表示是否登录成功的状态
            json = "{suc:0, msg:'用户名不存在'}";    //构造JSON格式的字符串
        } else if( ! password.equals(user.getPassword())){
            json = "{suc:0, msg:'密码不正确!'}";
        } else {
            json = "{suc:1, msg:'登录成功!'}";
        }
        sendMsg(json);    //发送JSON格式的字符串回JS端
    }
    
    /** *//**
     * 向客户端的JS发送字符串
     * @param content 发送的内容
     * @throws IOException
     */
    public void sendMsg(String content) throws IOException{
        HttpServletResponse response = ServletActionContext.getResponse();
        response.setCharacterEncoding("UTF-8");
        response.getWriter().write(content);
    }
    
}

上一页  1 2 3 4 5  下一页

Tags:Struts 精简 实例

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接