일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 라우터
- Java
- 데이터베이스
- 버추얼머신
- 자바
- 정보처리기사
- jsp
- VLAN
- html
- 참조타입
- Oracle
- 네트워크관리사
- ospf
- autoset
- 원형그래프
- ciscopacket
- 네트워크
- NCS
- rinux
- cisco packet
- jsp연결
- 이것이 자바다
- sql
- 리눅스
- javaee
- w3school
- php
- 정처기필기
- 오라클
- Cisco
- 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..
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/dxamZn/btrM65zvQfL/PKV8yoN5KGy4cKpxY9qUgK/img.jpg)
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..
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/cYK3es/btrMYU7pBVu/jujANRXymhBgzKv3HWlbgk/img.jpg)
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...