일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 지마켓
- 파이썬
- 크롤링
- java
- 코사인 유사도
- test
- 방식으로 텍스트
- Websocket
- 게시판 만들기
- pytorch
- word2vec
- 토픽추출
- spring MVC(모델2)방식
- oracle
- tomoto
- 幼稚园杀手(유치원킬러)
- 이력서
- (깃)git bash
- 과학백과사전
- Gmarket
- lda
- 자바
- Python
- jsp 파일 설정
- Topics
- RESFUL
- db
- r
- Today
- Total
목록게시판 만들기 (14)
무회blog
컨트롤러 002.03 com.board.controller TestController.java package com.board.controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @RestController public class TestController { @RequestMapping("/test") public String test(){ return "Hello World"; } } https://private.tistory.com/38?category=655784 스프링 부트 게시판 만들기4 - Rest방..
컨트롤러 002.02 com.board.controller BoardListController.java package com.board.controller; import java.util.List; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import org.springframework.web.servlet.ModelAndView; import com.board.domain.BoardVO; import com.b..
컨트롤러.002.01 com.board.controller BoardController.java package com.board.controller; import java.util.List; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.ModelAttribute; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.Request..
실행 클래스-001 com.board BoardApplication.java package com.board; import javax.sql.DataSource; import org.apache.ibatis.session.SqlSessionFactory; import org.mybatis.spring.SqlSessionFactoryBean; import org.mybatis.spring.annotation.MapperScan; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.autoc..