일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- mysql
- tomoto
- Python
- 코사인 유사도
- test
- Websocket
- Topics
- spring MVC(모델2)방식
- jsp 파일 설정
- 크롤링
- db
- 이력서
- Gmarket
- oracle
- 네이버뉴스
- 자바
- word2vec
- r
- lda
- java
- 지마켓
- 과학백과사전
- pytorch
- 파이썬
- 토픽추출
- RESFUL
- 방식으로 텍스트
- 幼稚园杀手(유치원킬러)
- 게시판 만들기
- (깃)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..