package com.example;
public class HelloWorld
{
public static String hello;
// setter-method:
public static void setHello(String newhello) {
hello = newhello;
}
// getter-method:
public static String getHello() {
return hello;
}
}
index.jsp:
<%@ page import="com.example.HelloWorld"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Servlet example</title>
</head>
<body>
<%
HelloWorld.setHello("Hello World 2");
out.println(HelloWorld.getHello());
%>
</body>
</html>
Комментариев нет:
Отправить комментарий