您现在的位置是:网站首页 > 学无止境

spring mvc注解语法

ImdaM 2023-03-25 09:42:59 0人围观
简介spring mvc注解语法

java spring mvc @ResponseBody @Controller  = @RestController


package com.example.demo.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;

//@ResponseBody
//@Controller
@RestController

public class helloController {

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

上一篇:spring-boot-dependencies的版本仲裁中心

下一篇:java中springboot配置文件

文章评论