完善 Access Log 的记录
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
package cn.iocoder.mall.user.rest.controller;
|
||||
|
||||
import cn.iocoder.common.framework.vo.CommonResult;
|
||||
import cn.iocoder.mall.web.constant.CommonMallConstants;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
@RestController
|
||||
@RequestMapping(CommonMallConstants.ROOT_PATH_USER + "/test")
|
||||
public class TestController {
|
||||
|
||||
@GetMapping("/echo")
|
||||
public CommonResult<Boolean> echo() {
|
||||
return CommonResult.success(true);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
package cn.iocoder.mall.user.rest.controller;
|
||||
@@ -0,0 +1 @@
|
||||
package cn.iocoder.mall.user.rest;
|
||||
Reference in New Issue
Block a user