Spring Building a RESTful Web Service

本文介绍如何使用Spring Initializr在线创建Maven项目,并通过示例演示如何编写一个简单的Spring Boot应用,包括Controller和POJO类的设计。最后,通过运行项目并进行HTTP请求测试验证功能。
摘要由CSDN通过智能技术生成

1.通过spring在线创建一个maven工程
地址:https://start.spring.io/

这里写图片描述
2.编写Controller
2.1GreetingController.java

package com.syh;

import java.util.concurrent.atomic.AtomicLong;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;

@Controller
public class GreetingController {

    private static final String template = "Hello, %s!";
    private final AtomicLong counter = new AtomicLong();

    @RequestMapping("/greeting")
    public @ResponseBody Greeting greeting(
            @RequestParam(value="name", required=false, defaultValue="World") String name) {
        System.out.println("greeting");
        return new Greeting(counter.incrementAndGet(),
                            String.format(template, name));
    }
}

2.2编写POJO类

Greeting .java

package com.syh;

public class Greeting {

    private final long id;
    private final String content;

    public Greeting(long id, String content) {

        this.id = id;
        this.content = content;
    }

    public long getId() {
        return id;
    }

    public String getContent() {
        return content;
    }
}

2.3最终工程结构
这里写图片描述
3.运行
工程项目右键->RunAs->Spring Boot App
如遇到提示 “找不到或无法加载主类 com.syh.MavenGenarate2Application”
则在项目跟目录下运行已下命令:
mvn compile
mvn package
mvn install
4.测试
http://localhost:8080/greeting?name=world
输出:

{
id: 3,
content: "Hello, world!"
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值