일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- autoset
- 버추얼머신
- NCS
- sql
- 리눅스
- html
- 정보처리기사
- javaee
- 참조타입
- 라우터
- 정처기필기
- 네트워크
- 원형그래프
- ospf
- cisco packet
- php
- jsp
- 네트워크관리사
- jsp연결
- ciscopacket
- VLAN
- 데이터베이스
- 자바
- w3school
- Java
- rinux
- 이것이 자바다
- 오라클
- Cisco
- Oracle
- Today
- Total
목록Spring (41)
기록해! 정리해!
package com.springbook.view; import javax.servlet.http.HttpServletRequest; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.RequestMapping; import com.springbook.biz.board.BoardVo; import com.springbook.biz.board.impl.BoardDaoImpl; @Controller public class BoardController { @RequestMapping(value="/deleteBoard.do..
package com.springbook.view; import javax.servlet.http.HttpSession; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.ModelAttribute; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.servlet.ModelAndView; import com.springbook.biz.user.UserVo; ..
1. package com.springbook.view; import javax.servlet.http.HttpSession; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import com.springbook.biz.user.UserVo; import com.springbook.biz.user.impl.UserDao3; @Controller public class LoginController { @RequestMapping(value="/..
package com.springbook.view.controller; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpSession; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.servlet.ModelAndView; import com.springbook.biz.board.BoardVo; import com.springbook.biz.board.impl.BoardDaoImpl; import com.spri..
p.355 [ 원래 소스 ] package com.springbook.view.controller; import java.util.List; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.springframework.web.servlet.ModelAndView; import org.springframework.web.servlet.mvc.Controller; import com.springbook.biz.board.BoardDao; import com.springbook.biz.board.BoardVo; import com.springbook.biz.board.imp..
login getBoardList getBoard insertBoard updateBoard deleteBoard logout [ ViewResolver 적용 하지 않는 경우는 redirect:getBoardList.do 를 붙인다. ] package com.springbook.view.controller; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.springframework.web.servlet.ModelAndView; import org.springframework.web.servlet.mvc.Controller; import com.springbook...