@RestController
@RequestMapping(value="/other")
public class OtherController
extends java.lang.Object
| 构造器和说明 |
|---|
OtherController() |
| 限定符和类型 | 方法和说明 |
|---|---|
void |
param(javax.servlet.ServletRequest servletRequest,
javax.servlet.ServletResponse servletResponse,
javax.servlet.http.HttpServletRequest httpServletRequest,
javax.servlet.http.HttpServletResponse httpServletResponse)
参数传递HttpServletRequest和HttpServletResponse
|
void |
requestMappingMethod()
通过@RequestMapping指定method属性
|
@RequestMapping(method=GET,
path="method")
public void requestMappingMethod()
@GetMapping(value="/param")
public void param(javax.servlet.ServletRequest servletRequest,
javax.servlet.ServletResponse servletResponse,
javax.servlet.http.HttpServletRequest httpServletRequest,
javax.servlet.http.HttpServletResponse httpServletResponse)
Copyright © 2019. All Rights Reserved.