博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
springboot helloworld
阅读量:5292 次
发布时间:2019-06-14

本文共 911 字,大约阅读时间需要 3 分钟。

idea下新建一个普通maven项目:

1.sprintboot父节点添加<parent>依赖包如下,<parent>好处,一旦添加version后,之后的depends依赖不需要在配置version,springboot会自行选择:

org.springframework.boot
spring-boot-starter-parent
2.0.6.RELEASE

在添加如下依赖:

org.springframework.boot
spring-boot-starter-web
//start-web,集成了springmvc,AOP的依赖包

新建HelloController

package com.example.sprintboot;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RestController;@RestControllerpublic class HelloController {    @RequestMapping("/hello")    public String hello(){        return "hello";    }}

@RestController将函数return值转成字符串形式输出:

@RequestMapping("/hello")定义方法的访问路径。 至此hello教程结束。

转载于:https://www.cnblogs.com/goodshred/p/9853602.html

你可能感兴趣的文章
BootStrap2学习日记2--将固定布局换成响应式布局
查看>>
实现自己的脚本语言ngscript之四:代码生成
查看>>
在Android中使用FlatBuffers(上篇)
查看>>
.net 基础面试题二
查看>>
leetcode 347. Top K Frequent Elements
查看>>
nil、Nil、NULL和NSNull的理解
查看>>
FTP上传下载文件
查看>>
maven build无反应,报terminated
查看>>
关于View控件中的Context选择
查看>>
mediaplayer state
查看>>
C# DataTable 详解
查看>>
2018icpc徐州OnlineA Hard to prepare
查看>>
R语言-rnorm函数
查看>>
Spark的启动进程详解
查看>>
Java 字符终端上获取输入三种方式
查看>>
javascript 简单工厂
查看>>
java调用oracle存储过程,返回结果集
查看>>
使用命令创建数据库和表
查看>>
数据库的高级查询
查看>>
HttpClient(一)-- HelloWorld
查看>>