JSP JavaBean
5181 단어 javabean
특성:
① 자바 빈 은 Public 클래스 이다.
② 0 매개 변수 기본 구조 방법 이 있다.
③ 속성 마다 get () 과 set () 방법 이 있다.
http://java.blogs.webucator.com/2010/04/17/javabeans-tutorial/ A Simple JavaBeans Tutorial
http://www.tutorialspoint.com/jsp/jsp_java_beans.htm JSP - JavaBeans
http://www.zhouwenze.com/archives/20110903-437.html JavaBean 이 뭔 지 쉽게 이해 할 수 있어 요.
1. 자바 빈 의 자바 코드 부분
public class Person implements java.io.Serializable {
// attributes declared as private
private String name;
// Default Constructor
public Person() { }
// getXxxx to access the name attribute
public String getName() {
return this.name;
}
// setXxxx to mutate the name attribute
public void setName(String name) {
this.name = name;
}
}
2. JSP 프로그램 에서 자바 빈 구성 요소 호출
1) JavaBean 인 스 턴 스 생 성
id: 스스로 이름 짓 기 class: 파일 경로 scope: 역할 범위 (page / request / session)
<jsp:useBean id="person" class="Person" scope="page"/>
2)
<jsp:setProperty name="person" property="*"/>
<jsp:setProperty name="students" property="firstName" value="Zara"/>
3)
<jsp:getProperty name="students" property="firstName"/>
3. JavaBean 의 생명주기
① page: 한 페이지 에서 만 기본 값
② request: 현재 request 처리 기간 은 < jsp: include >, < jsp: forward > 를 포함 합 니 다.
③ session: 웹 사이트 방문 부터 종료 까지
④ application: 서버 가 닫 힐 때 까지
4. 자바 빈 연결 데이터베이스
① 로드 드라이브
String Driver="sun.jdbc.odbc.JdbcOdbcDriver"
Class.forName("Driver")
② 연결 만 들 기
String ConnStr=“jdbc:odbc:DBurl”;
Connection conn=null
conn=DriverManager.getConnection(ConnStr,"username","password");
③ 데이터 조작
String sql="select * from tb"
Statement stat=Conn.createStatement();
Result rs=stat.executeQuery(sql);
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
velocity map list 배열 작업Velocity가 템플릿을 만들 때 맵,list 대상에 사용하고 출력 대상의 속성 값을 옮겨다니는 경우가 많다.스트리밍이 필요할 때, 스트리밍의 길이를 기록할 때, $velocity Count 내장 변수를 사용하여 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.