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 |
Tags
- wappalyzer
- String
- appleM1
- MySQL
- CloutNative
- Lombok
- SQL
- gradle
- restful api
- MYSQL에러
- pagination
- 우분투에war배포
- spring
- Java
- K8S
- windows10
- springMVC
- NullPointerException
- VUE
- SpringBoot
- 이클립스
- MySQL시작하기
- frontend
- offset
- intellij
- DB생성
- minikube
- 스프링에러
- Seek_Keyset
- Postman
Archives
- Today
- Total
미운 오리 새끼의 우아한 개발자되기
[Spring Boot] Cloud Native Java - 애플리케이션 마이그레이션 (1) 본문
Spring & Spring Boot/Spring Boot
[Spring Boot] Cloud Native Java - 애플리케이션 마이그레이션 (1)
Serina_Heo 2022. 9. 29. 13:02애플리케이션 환경 마이그레이션
pacakge demo;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
@WebServlet("/hi")
public class DemoApplication extends HttpServlet {
protected void doGet(
HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
response.setContentType("text/html");
response.getWriter().print("<html><body><h3>Hello Cloud</h3></body></html>");
}
}
이 서블릿 애플리케이션을 실행하려면 아래와 같이 애플리케이션의 manifest.yml 파일에 웹스피어 리버티 빌드팩을 지정해줘야한다.
---
application:
- name: wsl-demo
memory: 1024M
buildpack: https://github.com/cloudfoundry/ibm-websphere-liberty-builcpack.git
instances: 1
host: wsl-demo-${random-word}
path: target/buildpacks.war
env:
SPRING_PROFILES_ACTIVE: cloud
DEBUG: "true"
debug: "true"
IBM_JVM_LICENSE: L-JWOD-9sYNCP
IBM_LIBRARY_LICENSE: L-MCA0-9SYMVC
[Reference] Cloud Native Java - Josh Long, Kenny Bastani, 책만
'Spring & Spring Boot > Spring Boot' 카테고리의 다른 글
[Spring Boot] Spring Security 에서 특정 URL만 제외하여 필터링하기 (0) | 2023.01.01 |
---|---|
[QueryDsl] querydsl 설정 (0) | 2022.11.24 |
[Spring Boot] Cloud Native Java - Test(3) 스프링 클라우드 컨트랙트 (0) | 2022.09.29 |
[Spring Boot] Cloud Native Java - Test(2) 슬라이스 - @RestClientTest (0) | 2022.09.28 |
[Spring Boot] Cloud Native Java - Test(2) 슬라이스 - @DataJpaTest (0) | 2022.09.28 |