Spring boot 第一个程序

新建工程

Spring boot 第一个程序_第1张图片

选择spring-boot版本

Spring boot 第一个程序_第2张图片

右键创建类TestController:

Spring boot 第一个程序_第3张图片

代码如下:

package com.example.demo;

import org.springframework.web.bind.annotation.GetMapping;

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

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

@RestController

@RequestMapping("/liupeng")

public class TestController {

@GetMapping("/hello")

public String TestHelloworld()

{

return "hello world";

}

}

运行启动后台,输入网址测试:

http://127.0.0.1:8080/liupeng/hello

你可能感兴趣的:(spring,boot,spring,boot,java,后端)