728x90
목차
- DB
- VO
- DAO_insert
- WEB.jsp
- Register.jsp
1. DB
CREATE SEQUENCE student_seq;
CREATE table grade(
idx NUMBER(3) primary key,
name VARCHAR2(40),
java NUMBER(10),
c NUMBER(10),
grade NUMBER(10)
);
INSERT INTO grade VALUES(student_seq.nextval, '사나',99,99,4);
INSERT INTO grade VALUES(student_seq.nextval, '미나',88,88,3);
INSERT INTO grade VALUES(student_seq.nextval, '모모',77,77,2);
INSERT INTO grade VALUES(student_seq.nextval, '쯔위',66,66,1);
commit;
2. VO
package vo;
public class VO {
private int idx;
private String name;
private int java;
private int c;
private int grade;
public int getIdx() {
return idx;
}
public void setIdx(int idx) {
this.idx = idx;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getJava() {
return java;
}
public void setJava(int java) {
this.java = java;
}
public int getC() {
return c;
}
public void setC(int c) {
this.c = c;
}
public int getGrade() {
return grade;
}
public void setGrade(int grade) {
this.grade = grade;
}
}
3. DAO_insert
package dao;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.List;
import service.DBService;
import vo.VO;
public class DAO {
static DAO single = null;
public static DAO getInstance() {
//생성되지 않았으면 생성
if (single == null)
single = new DAO();
//생성된 객체정보를 반환
return single;
}
//grade테이블 조회
public List<VO> selectList() {
List<VO> list = new ArrayList<VO>();
Connection conn = null;
PreparedStatement pstmt = null;
ResultSet rs = null;
String sql = "SELECT * From grade";
try {
//1.Connection얻어온다
conn = DBService.getInstance().getConnection();
//2.명령처리객체정보를 얻어오기
pstmt = conn.prepareStatement(sql);
//3.결과행 처리객체 얻어오기
rs = pstmt.executeQuery();
while (rs.next()) {
VO vo = new VO();
//현재레코드값=>Vo저장
vo.setName(rs.getString("name"));
vo.setJava(rs.getInt("java"));
vo.setC(rs.getInt("c"));
vo.setGrade(rs.getInt("grade"));
list.add(vo);
}
} catch (Exception e) {
// TODO: handle exception
e.printStackTrace();
} finally {
try {
if (rs != null)
rs.close();
if (pstmt != null)
pstmt.close();
if (conn != null)
conn.close();
} catch (SQLException e) {
e.printStackTrace();
}
}
return list;
}
public int insert(VO vo) {
// TODO Auto-generated method stub
int res = 0;
Connection conn = null;
PreparedStatement pstmt = null;
String sql =
"INSERT INTO grade VALUES(student_seq.nextval, ?,?,?,?)";
try {
//1.Connection획득
conn = DBService.getInstance().getConnection();
//2.명령처리객체 획득
pstmt = conn.prepareStatement(sql);
//3.pstmt parameter 채우기
pstmt.setString(1, vo.getName());
pstmt.setInt(2, vo.getJava());
pstmt.setInt(3, vo.getC());
pstmt.setInt(4, vo.getGrade());
//4.DB로 전송(res:처리된행수)
res = pstmt.executeUpdate();
} catch (Exception e) {
e.printStackTrace();
} finally {
try {
if (pstmt != null)
pstmt.close();
if (conn != null)
conn.close();
} catch (SQLException e) {
e.printStackTrace();
}
}
return res;
}
}
4. WEB.jsp
<%@page import="vo.VO"%>
<%@page import="java.util.List"%>
<%@page import="dao.DAO"%>
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%
DAO dao = DAO.getInstance();
List<VO> list = dao.selectList();
%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script>
function send(f){
//name 값을 가져옴
var name = f.name.value;
var java = f.java.value;
var c = f.c.value;
var grade = f.grade.value;
//유효성 체크
if (name=="") {
alert("학생이름을 확인해주세요");
return;
}
if(java=="" ||java < 0 || java > 100){
alert("0~100점까지를 입력해주세요");
return;
}
if(c==""||c < 0 || c > 100){
alert("0~100점까지를 입력해주세요");
return;
}
if(grade=="" ||grade < 0 || grade > 4.5){
alert("GPA는 0~4.5점까지를 입력해주세요");
return;
}
/*유효성체크에서도 문제가 없다면 var로 선언된 값들을
grade_register.jsp로 보낸다.*/
f.action = "grade_register.jsp";
f.method = "post";
f.submit();
}
</script>
</head>
<body>
<table border='1' style='border-collapse: collapse;' align="center">
<tr>
<th> 이름 </th>
<th> 자바 </th>
<th> C계열 </th>
<th> GPA </th>
</tr>
<%
for(int i=0; i<list.size(); i++){
VO vo = list.get(i);
%>
<tr style="text-align: center;">
<td><%= vo.getName() %> </td>
<td><%= vo.getJava() %> </td>
<td><%= vo.getC() %> </td>
<td><%= vo.getGrade() %> </td>
</tr>
<%}%>
</table>
<!--학생입력 -->
<div id="input">
<form>
<h3 style="text-align: center;"> 학생 추가 </h3><br>
<table border="1" align="center" style="border-collapse: collapse;">
<tr>
<th>이름 </th>
<td><input name="name"></td>
</tr>
<tr>
<th>JAVA </th>
<td><input name="java"></td>
</tr>
<tr>
<th>C계열 </th>
<td><input name="c"></td>
</tr>
<tr>
<th>GPA </th>
<td><input name="grade"></td>
</tr>
<tr>
<td colspan="2" align="center">
<input type="button" value="등록" onclick="send(this.form);">
</td>
</tr>
</table>
</form>
</div>
</body>
</html>
5. Register.jsp
<%@page import="dao.DAO"%>
<%@page import="vo.VO"%>
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%
//post로 넘어오는 파라미터의 한글이 깨지지 않게 하기 위해 인코딩을 해줌
request.setCharacterEncoding("UTF-8");
//파라미터가 넘어올땐 String 타입으로 넘어오기 때문에 숫자 자료형이 필요하다면
//형변환을 해줘야한다.
String name = request.getParameter("name");
int java = Integer.parseInt(request.getParameter("java"));
int c = Integer.parseInt(request.getParameter("c"));
int gpa = Integer.parseInt(request.getParameter("grade"));
VO insert_vo = new VO();
insert_vo.setName(name);
insert_vo.setJava(java);
insert_vo.setC(c);
insert_vo.setGrade(gpa);
//DAO.java에 있는 insert 메서드에 vo를 파라미터로 넘김
DAO.getInstance().insert(insert_vo);
//Grade.jsp로 돌아간다.
response.sendRedirect("Grade.jsp");
%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
</body>
</html>
728x90
'# WEB > Java&JSP' 카테고리의 다른 글
[JSP] Update_WEB에서 DB자원 수정하기 (0) | 2020.11.25 |
---|---|
[JSP] Delete_WEB에서 DB자원 삭제하기 (0) | 2020.11.23 |
[JSP] JNDI_JSP와 OracleDB 연동 (0) | 2020.11.20 |
[JSP] JDBC 템플릿 설정/사용법 (0) | 2020.11.20 |
[JSP] Read_WEB에서 DB자원 조회 (0) | 2020.11.19 |