본문 바로가기
SpringBoot

프로젝트 생성

by Yeoseungwon 2023. 9. 22.
728x90

프로젝트 생성

다음 누르고

Spring Boot : 2.7.10

종속성

Developer Tools -> Spring Boot DevTools

Web -> Spring Web

Template Engines -> Thymeleaf

 

 

 

실행버튼 눌렀을때 오류뜨면 application.properties 가서 서버포트 입력해주기.

 

 

브라우저에 http://localhost:6795/hello.html

접속하면 hello 뜰거임

왼쪽파일의 static / (hello.html)

주소생성되는 경로

포트경로 적어주고

밑에 DBMS 연결해주기

spring.datasource.driver-class-name=org.mariadb.jdbc.Driver

spring.datasource.url=jdbc:mariadb://localhost:3306/

spring.datasource.username=study

spring.datasource.password=test1234

mybatis.mapper-locations=classpath:mappers/**/*.xml

 

pom.xml 가서 의존성 코드 복붙해주기

<dependency>

<groupId>org.springframework.boot</groupId>

<artifactId>spring-boot-starter-jdbc</artifactId>

</dependency>

<dependency>

<groupId>org.mariadb.jdbc</groupId>

<artifactId>mariadb-java-client</artifactId>

<version>3.1.3</version>

</dependency>

<dependency>

<groupId>org.mybatis.spring.boot</groupId>

<artifactId>mybatis-spring-boot-starter</artifactId>

<version>2.3.0</version>

</dependency>

그다음 오른쪽 위에 버튼 클릭해줘야 데이터베이스와 연결됨.

 

 

 

728x90

'SpringBoot' 카테고리의 다른 글

프로젝트 구조  (0) 2023.09.22
주소확인  (0) 2023.09.22
배포  (0) 2023.08.22
[SpringBoot] Httpsession  (0) 2023.07.06
[SpringBoot] Html 자체 폼 전달 -> Controller / 검색기능구현  (0) 2023.06.28