首页 > 代码库 > pringMvc-使用原生api

pringMvc-使用原生api

在springMvc有时候需要使用原生的api:

   
@RequestMapping(value="http://www.mamicode.com/testApi") public String testApi(HttpServletRequest req,HttpServletResponse res,Writer out) throws IOException{ System.out.println(req+"/"+res); out.write("hello~"); return SUCCESS; }

 

pringMvc-使用原生api