搭建一个基础的jsp应用场景,就是web端点击一个按钮,发送给服务端hello,服务器端回复一个xinte ,并显示在web客户端。
时间: 2024-06-11 07:07:37 浏览: 97
一个简单的jsp开发案例
5星 · 资源好评率100%
以下是一个基础的jsp应用场景:
1. 在web端创建一个按钮,点击按钮时触发发送请求的事件。
```html
<!DOCTYPE html>
<html>
<head>
<title>jsp应用场景</title>
</head>
<body>
<button onclick="sendRequest()">发送请求</button>
<p id="response"></p>
<script>
function sendRequest() {
var xhr = new XMLHttpRequest();
xhr.onreadystatechange = function() {
if (xhr.readyState == 4 && xhr.status == 200) {
document.getElementById("response").innerHTML = xhr.responseText;
}
};
xhr.open("GET", "hello.jsp", true);
xhr.send();
}
</script>
</body>
</html>
```
2. 在服务端编写hello.jsp,当接收到请求时向客户端回复xinte。
```jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%
response.setContentType("text/plain;charset=UTF-8");
response.getWriter().write("xinte");
%>
```
3. 将以上两个文件部署到web服务器上,并访问页面,点击按钮后应该能看到页面上显示出xinte。
阅读全文