码迷,mamicode.com
首页 > 编程语言 > 详细

Springboot 入门创建hello world1!

时间:2018-05-25 13:58:05      阅读:274      评论:0      收藏:0      [点我收藏+]

标签:入门   test   技术分享   XA   tomcat   world   http   control   直接   

1、首先使用工具是Eclipse,安装插件,点击“Help”-“Eclipse Marketplace...”,

技术分享图片

一步步直接Ok,等待安装完成

2、创建Springboot项目

技术分享图片

技术分享图片

技术分享图片

到此 就创建成功了

3、创建一个Controller

package com.example.demo.controller;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
@RequestMapping(value="/test")
public class TestController {

    @RequestMapping("/hello")
    String hello() {
        return "hello world1!";
    }
    
    @RequestMapping("")
    String index() {
        return "Eclipse  创建的springboot 项目";
    }
    
    @RequestMapping("/index")
    String index1() {
        return "index";
    }
    
    
}

4、右键项目“”Run As”选择“spring boot app”,运行结果

技术分享图片

代表启动成功

自带tomcat,默认是8080端口

技术分享图片

 

Springboot 入门创建hello world1!

标签:入门   test   技术分享   XA   tomcat   world   http   control   直接   

原文地址:https://www.cnblogs.com/zwdx/p/9087209.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!