• 大小: 9KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-06-07
  • 语言: 其他
  • 标签: springboot  

资源简介

第一个SpringBoot入门级项目,第一个SpringBoot入门级项目

资源截图

代码片段和文件信息

package com.ysh.hellospringboot;

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

/**
 * Hello world!
 *
 */
//此注解指定这是一个SpringBoot的应用程序,不加就会报异常 Unable to start ServletWebServerApplicationContext due to missing ServletWebServerFactory bean
@SpringBootApplication
public class App 
{
    public static void main( String[] args )
    {
     //SpringApplication用于从main方法中启动Spring应用的类
        SpringApplication.run(App.class args);
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        1024  2018-07-07 10:58  hellospringboot\.classpath
     文件         981  2018-07-07 10:58  hellospringboot\.project
     文件         119  2018-07-07 10:53  hellospringboot\.settings\org.eclipse.core.resources.prefs
     文件         430  2018-07-07 10:58  hellospringboot\.settings\org.eclipse.jdt.core.prefs
     文件          90  2018-07-07 10:53  hellospringboot\.settings\org.eclipse.m2e.core.prefs
     文件         172  2018-07-07 10:58  hellospringboot\.settings\org.eclipse.wst.common.project.facet.core.prefs.xml
     文件         170  2018-07-07 10:58  hellospringboot\.settings\org.eclipse.wst.common.project.facet.core.xml
     文件        1572  2018-07-07 10:57  hellospringboot\pom.xml
     文件         596  2018-07-07 11:04  hellospringboot\src\main\java\com\ysh\hellospringboot\App.java
     文件         405  2018-07-07 10:59  hellospringboot\src\main\java\com\ysh\hellospringboot\HelloController.java
     文件         689  2018-07-07 10:53  hellospringboot\src\test\java\com\ysh\hellospringboot\AppTest.java
     文件         267  2018-07-07 10:58  hellospringboot\target\classes\meta-INF\MANIFEST.MF
     文件         248  2018-07-07 10:58  hellospringboot\target\classes\meta-INF\maven\com.ysh\hellospringboot\pom.properties
     文件        1572  2018-07-07 10:58  hellospringboot\target\classes\meta-INF\maven\com.ysh\hellospringboot\pom.xml
     文件         681  2018-07-07 11:04  hellospringboot\target\classes\com\ysh\hellospringboot\App.class
     文件         627  2018-07-07 10:59  hellospringboot\target\classes\com\ysh\hellospringboot\HelloController.class
     文件         633  2018-07-07 10:58  hellospringboot\target\test-classes\com\ysh\hellospringboot\AppTest.class

评论

共有 条评论