logo
  • 教程列表
  • SO官方文档
  • Spring Boot + JPA + REST
    • Spring Boot 启动
    • 域对象
    • 存储库接口
    • Maven 配置
  1. StackOverflow 文档
  2. spring-boot 教程
  3. Spring Boot + JPA + REST
  4. Spring Boot 启动

Spring Boot 启动

Created: November-22, 2018

package com.example;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class Application {

   //main entry point
    public static void main(String[] args) {
        SpringApplication.run(Application.class, args);
    }
    
}
  • 域对象
  • Spring Boot + JPA + REST

Copyright © 2018. All right reserved

tastones.com 备案号:鲁ICP备18045372号-1

  • 关于我们
  • 免责声明