반응형
springboot, mybatis, sqlite, vue.js 를 사용해서 간단한 게시판을 만들어보자.
그 첫번째로 springboot 프로젝트 생성.
springboot는 maven 기반으로 프로젝트를 만들면서,
생성과 동시에 몇가지 기본적인 라이브러리를 자동 생성하도록 설정할 수 있는데,
spring web 과 mybatis를 선택 후 생성해 보았다.
maven 을 통해 가져올 라이브러리를 설정하는 pom.xml 파일에
sqlite 관련 내용을 추가한다.
<!-- https://mvnrepository.com/artifact/org.xerial/sqlite-jdbc -->
<dependency>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
<version>3.32.3</version>
</dependency>
반응형
'개발 > springboot 게시판 만들기' 카테고리의 다른 글
빈 등록 방식 - 컴포넌트 탐색 (0) | 2021.09.21 |
---|---|
[spring boot] jsp 사용하기 (0) | 2020.06.27 |
[springboot 게시판만들기] 2. Hello World 화면출력 (0) | 2020.06.27 |
[spring boot] Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. (0) | 2020.06.27 |