SpringBoot基础搭建

    技术2023-11-20  102

    APP服务端接口搭建流程总结

    环境准备

    MavenTomcatJava8

    步骤

    直接使用initializr进行创建新的应用,点击Generate即可生成代码

    Springboot编程

    package com.test; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; 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.RequestParam; import com.apk.ApkCommentListApi; @SpringBootApplication @Controller public class apkApplication { @RequestMapping("/ApkCommentList") //请求的路径 @ResponseBody //响应的方法体 String getApkCommentList(@RequestParam("token") String token,@RequestParam("type") int type,@RequestParam("num") int number){ if ("xxxxxxxx".equals(token)) { return ApkCommentListApi.getApkCommentList(type,number); }else{ return "User Token Error"; } } public static void main(String[] args) { SpringApplication.run(apkApplication.class, args); } } 添加依赖

    修改pom.xml

    Maven地址: https://mvnrepository.com/

    运行命令,会自动启动web服务,直接访问8080端口以及路径即可

    mvn spring-boot:run

    Processed: 0.009, SQL: 9