controller 接口写法
Posted fangwu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了controller 接口写法相关的知识,希望对你有一定的参考价值。
import org.apache.commons.io.IOUtils; import javax.servlet.ServletInputStream;
@RequestMapping("/sendMsg.mob") @ResponseBody public String sendMsg(HttpServletRequest request) { ServletInputStream inputStream = null; String param = ""; try { // 获取请求输入流 inputStream = request.getInputStream(); //将请求信息转换为字符串 param = IOUtils.toString(inputStream, "UTF-8"); } catch (IOException e2) { e2.printStackTrace(); }
return ""; }
以上是关于controller 接口写法的主要内容,如果未能解决你的问题,请参考以下文章
Nginx——Nginx启动报错Job for nginx.service failed because the control process exited with error code(代码片段