重粒子的运行轨迹

Compiling ...
baryon.cpp
baryon.cpp(1) : warning C0000: all glory is fleeing

导航

Jersey RESTful WebService框架学习(四)使用@FormParam


前端
<form action="/Jersey/api/1.0/my/form" method="post">
		<input type="text" name="name">
		<input type="submit" value="提交">
	</form>



后端
	@POST
	@Path("/form")
	@Produces({ MediaType.APPLICATION_JSON + ";charset=UTF-8" })
	public String form(@FormParam("name") String name) {
		System.out.println(name);
		return "{\"name\":\""+name+"\"}";
	}

posted on 2017-11-24 21:19  重粒子  阅读(238)  评论(0编辑  收藏  举报