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

Spring Boot 使用IntelliJ IDEA创建一个web开发实例(二)

时间:2018-06-10 11:44:49      阅读:233      评论:0      收藏:0      [点我收藏+]

标签:右键   host   string   div   deb   ram   min   oca   创建   

1. 创建一个Controller类 

package com.example.demo;

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

/**
 * Created by Administrator on 2018-06-09.
 */
@RestController
public class DemoController {

    @RequestMapping("hello")
    public String hello(){
        return "hello world!";
    }

}

 

2. 启动应用,右键选中DemoApplication.java,在弹出菜单中选择run或debug

技术分享图片

技术分享图片

3. 输入访问地址 http://localhost:8080/hello

技术分享图片

 

Spring Boot 使用IntelliJ IDEA创建一个web开发实例(二)

标签:右键   host   string   div   deb   ram   min   oca   创建   

原文地址:https://www.cnblogs.com/zsg88/p/9161766.html

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