资源简介
第一个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.xm
文件 170 2018-07-07 10:58 hellospringboot\.settings\org.eclipse.wst.common.project.facet.core.xm
文件 1572 2018-07-07 10:57 hellospringboot\pom.xm
文件 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\me
文件 248 2018-07-07 10:58 hellospringboot\target\classes\me
文件 1572 2018-07-07 10:58 hellospringboot\target\classes\me
文件 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
相关资源
- SpringBoot+H2+mybatis-plus59130
- springboot+rabbitmq项目demo(亲测可正常运
- springboot整合RabbitMQ实现延时队列的两
- 2017年-传智播客-张志君老师-SpringBoo
- springboot+mybatis整合实现注册登录
- springboot+webflux+mongodb+freemarker
- springboot整合activiti完整demo
- SpringBoot实战(第4版)清晰版.pdf.zip
- SpringBoot 中文文档
- springboot+jpa+thymeleaf实现增删改查分页
- es(elasticsearch)整合SpringCloudSpringBo
- Springboot日志开启SLF4J过程解析
- springboot全套教程2018年2.0版本
- 官网springboot项目
- SpringBoot+Mybatis+前后台隔离技术,完整
- Spring Boot技术栈博客企业前后端2018
- springboot从入门到精通视频教程课程源
- SpringBoot +vue 框架项目.zip
- springBoot+security+oauth2 资源和认证分离
- 基于yml 配置方式 ,实现springBoot+sha
- springboot集成activiti5.22
- SpringBoot官方文档(中文版).pdf
- 2018年SpringBoot与Shiro整合-权限管理实战
- spring boot整合activiti modeler
- springboot1.x整合elasticsearch5.x
- 将rtsp转码为flv格式用于h5播放前端使
- MQTT-1.zip
- 2-springboot cloud 28题选择题和2简答题
- 11-SpringBoot视频教程-精辟易懂
- (视频和源码)spring boot cloud实战租房
评论
共有 条评论