服务端怎么弄
这个课程的服务端怎么弄的
这个课程的服务端怎么弄的
2020-02-26
在https://start.spring.io/官网,创建一个springboot应用
本地用IDEA打开这个应用解压出来的文件夹
在工程中,创建一个package,推荐命名为controller,再创建一个Controller类
package com.imooc.HttpUpload.Controller; import org.springframework.http.MediaType; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; import org.springframework.web.multipart.MultipartFile; import static com.imooc.HttpUpload.util.Contants.filePath; @RestController public class FileUploadController { @RequestMapping(value = "/hello", method = {RequestMethod.POST, RequestMethod.GET}) public String hello() { return "Hello World"; } }
启动springboot工程
登录浏览器,输入url:localhost:8080/hello(8080可以在application.properties中配置)
此时,建议将手机和电脑连到同一个路由器的WIFI中(目的是:手机可以通过内网IP地址访问电脑)
再打开终端,查看自己电脑的ip地址:
尝试ping手机的IP地址,发现能够PING通,则代表后续开发的APP也可以正常使用(如果还存在问题,可以试试用手机浏览器去访问:http://电脑的ipv4地址:8080/hello
后续测试POST,HEAD,需要各位自己去研究一下springboot的Controller的编写
举报