Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <%@ page language="java" contentType="text/html; charset=BIG5"
  2.     pageEncoding="BIG5"%>
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  4. <html>
  5. <head></head>
  6. <body>
  7. <jsp:useBean id="helloBean" class="bean.HelloWorldBean" type ="bean.HelloWorldBean" scope ="application"></jsp:useBean>
  8. <jsp:setProperty property="message" name="helloBean" value="hello"/>
  9. <%
  10. out.println(helloBean.getMessage());
  11. %>
  12. </body>
  13. </html>