반응형
250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 제로초
- 비주얼스튜디오
- EntityFramework
- 자바스크립트recude
- 인프런무료강좌
- .NET
- 객체리터럴
- Blazor
- 인프런강의
- 인프런인강
- 인프런강좌
- 고차함수
- NPM
- 객체의비교
- 자바스크립트객체리터럴
- slice
- c#
- 인프런
- HTTP
- 콜백함수
- 자바스크립트함수
- 인프런자바스크립트
- 자바스크립트파라미터
- 자바스크립트
- sort
- 이벤트리스너
- 인터넷프로토콜
- 틱택토구현
- 자바스크립트틱택토
- 코딩
Archives
- Today
- Total
샐님은 개발중
#0. 쇼핑몰 프로젝트 생성 본문
728x90
반응형
프로젝트 생성
1. 프로젝트 정보
이름 | 사용 툴 | 버전 |
형성관리도구 | intellij | 3.0.9 |
프로젝트 생성 | spring boot | |
데이터베이스 | mssql | |
java | 17 | |
2. 사용한 디펜던시
plugins {
id 'java'
id 'org.springframework.boot' version '3.0.9'
id 'io.spring.dependency-management' version '1.1.2'
}
group = 'jpabook'
version = '0.0.1-SNAPSHOT'
java {
sourceCompatibility = '17'
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'com.github.gavlyukovskiy:p6spy-spring-boot-starter:1.9.0'
implementation 'org.thymeleaf.extras:thymeleaf-extras-java8time:3.0.4.RELEASE'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-mail' //email
implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity6'
testImplementation 'junit:junit:4.13.1'
compileOnly 'org.projectlombok:lombok'
runtimeOnly 'com.microsoft.sqlserver:mssql-jdbc'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
implementation 'nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect' //dialect layout
}
tasks.named('test') {
useJUnitPlatform()
}
3. 화면 띄우기 성공
728x90
반응형
'포토폴리오 > Spring-Boot,JPA - 쇼핑몰사이트 v2' 카테고리의 다른 글
#6. 고아 객체 제거 와 지연 로딩 (0) | 2023.08.04 |
---|---|
#5. 영속성 전이 (0) | 2023.08.04 |
#4. 연관 관계 매핑 (0) | 2023.08.04 |
#3. 스프링 시큐리티를 활용한 로그인/회원가입 (2) (0) | 2023.08.03 |
#2. 스프링 시큐리티를 활용한 로그인/회원가입 (1) (0) | 2023.08.03 |