Skip to content

Instantly share code, notes, and snippets.

@topspinppy
Created February 15, 2017 19:38
Show Gist options
  • Save topspinppy/a4ac458f1b892937dded01fffe06fa10 to your computer and use it in GitHub Desktop.
Save topspinppy/a4ac458f1b892937dded01fffe06fa10 to your computer and use it in GitHub Desktop.
<%@page contentType="text/html" %>
<%@page pageEncoding="UTF-8" %>
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<!--เรียกใช้ Class ใน Bean -->
<jsp:useBean id="std" scope="page" class="bean.StudentBean">
<!--การใช้ useBean-->
<!--ความหมายเดียวกันกับ-->
<!-- bean.StudentBean std = new bean.StudentBean(); -->
<!---จำไว้ว่า scope Request คือ ทุกๆครั้งที่มีการส่งข้อมูลเข้าไปใน Server ค่า Beans จะถูกสร้างใหม่ กด Refresh เรื่อยๆก็สร้างเรื่อยๆ ดูความเหมาะสมในการใช้งาน เพราะใช้งานแบบนี้ค่อนข้างเปลืองหน่วยความจำ--->
<!----Property จะไม่อ่าน GET SET จะอ่านชื่อ Function อย่างเดยีวเช่น GETName มันจะอ่านแค่ Name ---->
<!--กำหนดค่าเข้าไปทำงานใน java-->
<jsp:setProperty name="std" property="FName" value="Paranat" />
<jsp:setProperty name="std" property="LName" value="Klinhom" />
<jsp:setProperty name="std" property="Gpa" value="3.30" />
</jsp:useBean>
firstname = <%=std.getFName() %><br>
lastname = <%=std.getLName() %><br>
GPA = <%=std.getGpa() %>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment