서버 배포할 때 spring 동작 시키는 방법
jar 넣고 실행시키기
cd hello-spring
hello-spring % ls -al
hello-spring % ./gradlew build
hello-spring % cd build
build % ls -al
build % cd libs
libs % ls -arlth
libs % java -jar hello-spring-0.0.1-SNAPSHOT.jar
. ____ _ __ _ _
/\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
' |____| .__|_| |_|_| |_\__, | / / / /
=========|_|==============|___/=/_/_/_/
:: Spring Boot :: (v2.7.6)
✔ 참고
김영한님 강의
스프링 입문 - 코드로 배우는 스프링 부트, 웹 MVC, DB 접근 기술
'개발 > SpringBoot' 카테고리의 다른 글
[spring] 스프링 빈과 의존관계, DI (0) | 2022.12.21 |
---|---|
[springboot] test case @Aftereach 어노테이션 (0) | 2022.12.18 |
[오류] No matching variant of org.springframework.boot:spring-boot-gradle-plugin:3.0.0 was found. (0) | 2022.12.18 |
[오류/해결] Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. (0) | 2022.08.07 |
Spring WebClient / objectMappper (0) | 2022.06.27 |