Spring Native实战(畅快体验79毫秒启动springboot应用)

本文详细介绍了如何使用SpringNative0.10.0-SNAPSHOT版本构建SpringBoot应用的Docker镜像,涉及AOT编译和使用`spring-aot-maven-plugin`和`spring-boot-maven-plugin`。同时,对比了与传统SpringBoot应用启动速度的差异,以及对MySQL的集成示例。
摘要由CSDN通过智能技术生成

spring-native

0.10.0-SNAPSHOT

org.springframework.cloud

spring-cloud-dependencies

${spring-cloud.version}

pom

import

org.springframework.boot

spring-boot-maven-plugin

${classifier}

${builder}

<BP_NATIVE_IMAGE>true</BP_NATIVE_IMAGE>

<BP_NATIVE_IMAGE_BUILD_ARGUMENTS>${native.build.args}</BP_NATIVE_IMAGE_BUILD_ARGUMENTS>

IF_NOT_PRESENT

org.springframework.experimental

spring-aot-maven-plugin

0.10.0-SNAPSHOT

test-generate

test-generate

generate

generate

  • 上述pom.xml有以下几处需要注意:
  1. 插件仓库、依赖库仓库、依赖库版本的配置都集中在这里;

  2. 配置好spring-aot-maven-plugin和spring-boot-maven-plugin这两个插件,子工程会用到;

  3. spring-boot-maven-plugin插件制作docker镜像的时候,又会用到dmikusa/graalvm-tiny镜像,这才是真正构建native image的工具;

新建springboot类型的maven子工程

  • 新建名为webmvc的子工程,pom.xml内容如下,可见内容很简单,就是常规依赖库和父工程配置的两个插件,一个负责执行AOT,一个负责构建镜像:
<?xml version="1.0" encoding="UTF-8"?>

<project xmlns=“http://maven.apache.org/POM/4.0.0”

xmlns:xsi=“http://www.w3.org/2001/XMLSchema-instance”

xsi:schemaLocation=“http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd”>

spring-native-tutorials

com.bolingcavalry

1.0-SNAPSHOT

4.0.0

webmvc

org.springframework.experimental

spring-native

org.springframework.boot

spring-boot-starter-web

org.apache.tomcat.embed

tomcat-embed-core

org.apache.tomcat.embed

tomcat-embed-websocket

org.apache.tomcat.experimental

tomcat-embed-programmatic

${tomcat.version}

org.springframework.boot

spring-boot-starter-test

test

org.springframework.experimental

spring-aot-maven-plugin

true

org.springframework.boot

spring-boot-maven-plugin

  • 代码很简单,一个普通的springboot应用,带http接口:

package com.bolingcavalry.webmvc;

import org.springframework.boot.SpringApplication;

import org.springframework.boot.autoconfigure.SpringBootApplication;

import org.springframework.http.HttpStatus;

import org.springframework.web.bind.annotation.GetMapping;

import org.springframework.web.bind.annotation.ResponseStatus;

import org.springframework.web.bind.annotation.RestController;

import java.time.LocalDateTime;

@SpringBootApplication

@RestController

public class WebmvcApplication {

pub

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值