반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- SQL 명령어
- SQL 연산자
- 노마드코더
- spring 환경설정
- Eclipse
- 타입
- 람다식
- SQL 문제
- Flex Box 기본
- numpy
- ubuntu
- Hooks
- 이클립스
- 객체지향프로그래밍
- 자바스프링
- 플랙스박스기본
- HTML5
- 관계형데이터베이스
- java spring
- Flexbox Froggy
- REACT
- SQL
- 리액트
- 오산대맛집
- node.js
- 스프링
- 자바 스프링
- spring
- java설치
- 환경설정
Archives
- Today
- Total
이것저것
[Spring] ajax로 페이지 refresh없이 출력하기 본문
반응형
SMALL
DTO.java
DAO.java
axios랑 똑같다.
2020/06/18 - [코딩코딩/Spring] - [Spring] axios로 spring 구현
Oracle.java
package pack02;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
@Controller
public class Oracle {
@RequestMapping("/t1")
public String test(){
return "DataForm";
}
@RequestMapping(value = "/t2")
public String test2(Model m,
@RequestParam(value = "id") String id,
@RequestParam(value = "pw") String pw,
@RequestParam(value = "name") String name,
@RequestParam(value = "age") String age
){
DAO dao = new DAO();
dao.insert(id, pw, name, age);
String list =dao.select();
System.out.println(list);
return list;
}
@RequestMapping("/t3")
public String test3(Model m,
@RequestParam(value = "id") String id,
@RequestParam(value = "pw") String pw,
@RequestParam(value = "name") String name,
@RequestParam(value = "age") String age
){
DAO dao = new DAO();
dao.update(id, pw, name, age);
String list =dao.select();
System.out.println(list);
return list;
}
@RequestMapping("/t4")
public String test4(Model m,
@RequestParam(value = "id") String id,
@RequestParam(value = "name") String name
){
DAO dao = new DAO();
dao.delete(id, name);
String list =dao.select();
System.out.println(list);
return list;
}
}
index.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ page import="java.util.*, java.text.*"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<title>메인 페이지</title>
</head>
<body>
<%=new Date()%>
<h2>관리페이지</h2>
<a href="t1">회원 관리</a><br/><br/>
<div id="list"></div>
<button id="sendButton">전송</button>
<script type="text/javascript">
$(function(){
$("#sendButton").click(function(){
$.ajax({
type : "POST", // 요청 타입
url : "t1", // 요청 경로
success : function(data) {
var dt = JSON.parse(data);
var dt2 = "";
console.log(dt);
for(var i=0; i < dt.length; i++){
dt2 += dt[i].id +" " + dt[i].pw+" " + dt[i].name+" " + dt[i].age;
dt2 +="<br/>"
}
console.log(dt2);
$("#list").html(dt2); //div에 받아온 값을 넣는다
},
})
.done(function() { console.log("성공"); })
.fail(function() { console.log("실패"); })
})
});
</script>
</body>
DataForm.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<h3>회원 추가</h3>
<form id="insert" action="t2" method="post">
<input type="text" name="id" placeholder="id입력" /><br/>
<input type="password" name="pw" placeholder="pw입력" /><br/>
<input type="text" name="name" placeholder="이름 입력" /><br/>
<input type="text" name="age" placeholder="나이 입력" /><br/>
<input type="submit" value="전송" />
</form>
<h3>회원 수정</h3>
<form action="t3" method="post">
<input type="text" name="id" placeholder="id입력" /><br/>
<input type="password" name="pw" placeholder="pw입력" /><br/>
<input type="text" name="name" placeholder="바꿀이름 입력" /><br/>
<input type="text" name="age" placeholder="바꿀나이 입력" /><br/>
<input type="submit" value="전송" />
</form>
<h3>회원 삭제</h3>
<form action="t4" method="post">
<input type="text" name="id" placeholder="id입력" /><br/>
<input type="text" name="name" placeholder="지울이름 입력" /><br/>
<input type="submit" value="전송" />
</form>
<a href="<c:url value='index.jsp' />">Home</a>
</body>
</html>
반응형
LIST
'Spring' 카테고리의 다른 글
[Spring] Mybatis (0) | 2020.06.19 |
---|---|
[Spring] axios로 spring 구현 (0) | 2020.06.18 |
[Spring] JSTL 사용하기 (0) | 2020.06.16 |
[Spring]환경설정(약식2) (0) | 2020.06.15 |
[Spring] Spring 환경설정(약식) (0) | 2020.06.11 |
Comments