일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- oracle
- 幼稚园杀手(유치원킬러)
- spring MVC(모델2)방식
- tomoto
- Python
- 파이썬
- 코사인 유사도
- 자바
- RESFUL
- 게시판 만들기
- 과학백과사전
- Topics
- word2vec
- db
- mysql
- r
- 크롤링
- java
- 네이버뉴스
- 토픽추출
- jsp 파일 설정
- Gmarket
- 방식으로 텍스트
- test
- Websocket
- lda
- 지마켓
- pytorch
- (깃)git bash
- 이력서
- Today
- Total
목록BoardMapper (2)
무회blog
BoardMapper, 쿼리설정 src/main/resources/ mappers boardMapper.xml insert into board_pro values (#{bno},#{subject},#{content},#{writer},now(),0) select * from board_pro select * from board_pro where bno = #{bno} update board_pro set hit = hit+1 where bno = #{bno} update board_pro set subject = #{subject}, content = #{content} where bno = #{bno} delete from board_pro where bno = #{bno} https://private..
매퍼 인터페이스 설정 ,BoardMapper interface com.board.mapper BoardMapper.java package com.board.mapper; import java.util.List; import com.board.domain.BoardVO; public interface BoardMapper { //글작성 public void boardInsert(BoardVO vo)throws Exception; //글목록 public List boardList()throws Exception; //글보기 public BoardVO boardView(int bno)throws Exception; //조회수 증가 public void hitPlus(int bno)throws Exception..