Docker發佈SpringBoot微服務應用Quick Start
Step By Step 1、IDEA創建微服務應用2、編輯Dockerfile3、Build 鏡像4、Docker Run發佈鏡像5、開啟ECS網絡安全組,實現外部訪問 1、IDEA創建微服務應用 1.1 創建項目 1.2 添加Controller Code Sample import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @RestController public class […]