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
- 누구나 자료구조와 알고리즘
- React Native
- 타입좁히기
- 성능최적화
- 폰트적용하기
- utilty type
- TSDoc
- 레이아웃쪼개기
- reactjs
- 공통컴포넌트
- 개발콘텐츠
- typescript
- CSS
- React.js
- click and drag
- vue.js
- javascript
- returnType
- JS console
- 티스토리꾸미기
- 2022
- 제네릭
- Chart.js
- react
- 커스텀
- 리액트
- 타입스크립트
- 반복줄이기
- const 단언문
- NonNullable
Archives
- Today
- Total
몽땅뚝딱 개발자
[JAVA/Spring Boot] TodoList 만들기(7) - Controller 본문
Development/Spring Framework
[JAVA/Spring Boot] TodoList 만들기(7) - Controller
레오나르도 다빈츠 2021. 6. 19. 00:02📄 TodoController.java
package com.moddk.swagger.controller;
import java.util.HashMap;
import java.util.List;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpSession;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;
import com.moddk.swagger.service.TodoService;
import com.moddk.swagger.vo.TodoVO;
import io.swagger.annotations.ApiOperation;
@Controller
public class TodoController {
@Autowired
private TodoService service;
@ApiOperation(value="초기 화면 진입", hidden = true)
@RequestMapping(value = "/")
private String goLogin(HttpServletRequest req) {
HttpSession session = req.getSession();
String user_id = (String)session.getAttribute("user_id");
// 기존에 로그인되어 있으면 home으로 redirect
if(user_id == null) {
return "login";
} else {
return "redirect:/home";
}
}
@RequestMapping("/logout")
public String logout(HttpSession session) {
// 로그아웃이면 session 만료
session.invalidate();
return "login";
}
@ApiOperation(value="로그인 시도", hidden = true)
@RequestMapping(value = "/accessLogin", method = RequestMethod.POST)
@ResponseBody
private int accessLogin(HttpServletRequest req, @RequestParam String user_id, @RequestParam String user_pw) {
// 비밀번호 검사 후 맞으면 1, 아니면 0 return
int isPassed = service.loginCheck(user_id, user_pw);
if(isPassed == 1) {
HttpSession session = req.getSession();
session.setAttribute("user_id", user_id);
goHome(req); // 홈으로 이동
}
return isPassed;
}
@ApiOperation(value="Todo 화면 진입", hidden = true)
@RequestMapping("/home")
private String goHome(HttpServletRequest req) {
HttpSession session = req.getSession();
String user_id = (String)session.getAttribute("user_id");
List<TodoVO> todoList = service.getTodoList(0, user_id);
req.setAttribute("todoList", todoList);
return "todoList";
}
@ApiOperation(value = "TodoList 가져오기")
@RequestMapping(value = "/select/todoList", method = RequestMethod.POST)
@ResponseBody
private HashMap<String, Object> getTodoList(HttpServletRequest req, @RequestParam int searchType) {
System.out.println("searchType " + searchType);
HttpSession session = req.getSession();
String user_id = (String)session.getAttribute("user_id");
List<TodoVO> todoList = service.getTodoList(searchType, user_id);
HashMap<String, Object> data = new HashMap<String, Object>();
data.put("todoList", todoList);
return data;
}
@ApiOperation(value = "Todo 추가하기")
@RequestMapping(value = "/insert/todoList", method = RequestMethod.GET)
@ResponseBody
private HashMap<String, Object> addTodoList(HttpServletRequest req, @RequestParam String contents, @RequestParam int searchType) {
HttpSession session = req.getSession();
String user_id = (String)session.getAttribute("user_id");
int isSuccess = service.addTodoList(contents, user_id);
System.out.println(isSuccess > 0 ? "성공" : "실패");
HashMap<String, Object> data = new HashMap<>();
data.put("isSuccess", isSuccess);
data.put("todoList", service.getTodoList(searchType, user_id));
return data;
}
@ApiOperation(value="Todo 체크 시 완료여부 반영")
@RequestMapping(value = "/update/todoList", method = RequestMethod.GET)
@ResponseBody
private HashMap<String, Object> updateComYnOfTodoList(HttpServletRequest req, @RequestParam int searchType, @RequestParam int idx) {
int result = service.updateComYnOfTodoList(idx);
System.out.println(result);
HttpSession session = req.getSession();
String user_id = (String)session.getAttribute("user_id");
HashMap<String, Object> data = new HashMap<>();
data.put("todoList", service.getTodoList(searchType, user_id));
return data;
}
@ApiOperation(value = "Todo 삭제하기")
@RequestMapping(value = "/delete/todoList", method = RequestMethod.POST)
@ResponseBody
private HashMap<String, Object> deleteTodo(HttpServletRequest req, @RequestParam int idx, @RequestParam int searchType) {
HttpSession session = req.getSession();
String user_id = (String)session.getAttribute("user_id");
service.deleteTodo(idx, user_id);
List<TodoVO> todoList = service.getTodoList(searchType, user_id);
HashMap<String, Object> data = new HashMap<String, Object>();
data.put("todoList", todoList);
return data;
}
}
아주 간단한 Controller라 설명이 필요한 부분은 간단히 주석을 달아놓았다.
@ApiOperation 주석은 swagger에서 사용하는 어노테이션이고 이외는 특별한게 없다.
개인적으로 공부한 내용을 정리하는 블로그로
잘못된 개념을 게시하지않도록 주의하고 있으나 오류가 있을 수 있습니다.
'Development > Spring Framework' 카테고리의 다른 글
[JAVA/Spring Boot] TodoList 만들기(8) - Mapper, Service (0) | 2021.06.20 |
---|---|
[JAVA/Spring Boot] TodoList 만들기(6) - Main Application (0) | 2021.06.13 |
[JAVA/Spring Boot] TodoList 만들기(5) - 스크립트 (0) | 2021.06.10 |
[JAVA/Spring Boot] TodoList 만들기(4) - DB 구조 (0) | 2021.06.09 |
[JAVA/Spring Boot] TodoList 만들기(3) - JSP 구조 및 HTML/CSS (0) | 2021.06.09 |
Comments