资源简介
第一个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开发第一个Web应用代码
- SpringBoot CRUD + 事务 DEMO
- springboot springcloud 构建 微服务
- SpringBoot整合Mybatis()
- Springboot启动时序图
- springboot+dubbo+myBatis集成
- SpringBoot企业级微信点餐系统.zip
- springboot+dubbo+zookeeper实现分布式系统增
- 微信授权登陆全后台实现springboot
- springboot-cxf-webservice
- springboot+mybatis plus整合案例
- mybatis plus+springboot反向生成代码
- Spring Boot 2.x整合微信支付在线教育网
- Idea Spring boot 入门dome
- springboot2.0整合quartz
- springboot.txt
- SpringBoot1.5.x+maven+velocity2-demo
- SpringBoot+SSM三个框架
- 尚硅谷SpringBoot核心技术篇
- alipay支付Demo-springboot整合版
- springboot入门视频代码教材资源.txt
- springboot 登录注册
- springboot微信点餐视频源码全.txt
- springboot+CXF发布webservice接口
- Springboot中ajax实现动态绑定省市区
- 2小时学会springboot源码
- SSM到SpringBoot从零开发校园商铺平台
- springboot开发的物业管理系统-毕业设计
- SpringBoot开发理财平台产品系统网盘地
- springboot2.0.4下的LCN
评论
共有 条评论