Buffalo框架的使用

整体介绍,建议先看完下面的内容在回过来看这个介绍】当用户输入账号密码后,点击“提交”按钮,则执行JSh中的getInfo()方法,该方法会调用Buffalo框架中的remoteCall("UserService.getInfo",[username,password],function(reply){})方法,"UserService.getInfo":UserService是第六步文件中的,它指定了哪一个类,等价于com.cuc.service,getInfo是UserService指定类中的方法名;[username,password]:是需要传输的参数,使用[arg1,arg2,...]的方式组合;function(reply){}:是Buffalo框架的回调函数,即后台会返回一些数据,可以在该function中获取到。

1.下载Buffalo框架所需要的jsr包和JS文件

https://download.csdn.net/download/qq_34584694/10997810

2.创建一个J2EE的项目,最终目录结构如下

Buffalo框架的使用_第1张图片

3.index.jsp页面代码:

<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%>
<%
    String path = request.getContextPath();
    String basepath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

	
		
		
		Insert title here
		
    	
    	
	
	
		账号:
		密码:
		
	

4.web.xml配置文件代码:



  Buffalo框架的使用
  
  	buffalo
  	net.buffalo.web.servlet.ApplicationServlet
  
  
  
  	buffalo
  	/buffalo/*
  

5.User.java代码:

package com.cuc.service;

public class User {
	public String getInfo(String username,String password){
		if(username.equals(password)){
			return "欢迎你,"+username;
		}
		return "账号或密码不对";
	}
}

6.buffalo-service.properties文件代码:

####the first buffalo demo
UserService = com.cuc.service.User

7.测试【这里只是一个简单的测试,当账号和密码输入一致时,登录成功,反之,账号和密码有误】

你可能感兴趣的:(JAVA)