250x250
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Topics
- Gmarket
- 幼稚园杀手(유치원킬러)
- lda
- 코사인 유사도
- spring MVC(모델2)방식
- 지마켓
- pytorch
- 이력서
- RESFUL
- 방식으로 텍스트
- test
- 게시판 만들기
- 자바
- word2vec
- Websocket
- tomoto
- db
- 과학백과사전
- java
- 토픽추출
- mysql
- jsp 파일 설정
- oracle
- r
- (깃)git bash
- 파이썬
- 네이버뉴스
- Python
- 크롤링
Archives
- Today
- Total
무회blog
spring MVC(모델2)방식,JAVA, MySQL , RESFUL, 게시판 만들기 , 005 , test파일 설정 본문
테스트 패키지
src/test/java
com.board
BoardApplicationTests.java
package com.board;
import java.sql.Connection;
import javax.sql.DataSource;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
//import org.springframework.boot.test.SpringApplicationConfiguration;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import org.springframework.test.context.web.WebAppConfiguration;
import com.board.domain.BoardVO;
import com.board.mapper.BoardMapper;
@RunWith(SpringJUnit4ClassRunner.class)
//@SpringApplicationConfiguration(classes = BoardApplication.class)
@SpringBootTest
@WebAppConfiguration
public class BoardApplicationTests {
@Autowired
private BoardMapper mapper;
@Test
public void contextLoads() {
}
@Test
public void testMapper() throws Exception {// 작성
BoardVO vo = new BoardVO();
vo.setSubject("제목입니다.");
vo.setContent("내용입니다.");
vo.setWriter("작성자입니다.");
mapper.boardInsert(vo);
}
}
https://private.tistory.com/38?category=655784
'IT > Spring' 카테고리의 다른 글
Comments