54 lines
1.4 KiB
Java
54 lines
1.4 KiB
Java
/**
|
|
* Copyright (c) 2016-2019 人人开源 All rights reserved.
|
|
*
|
|
* https://www.renren.io
|
|
*
|
|
* 版权所有,侵权必究!
|
|
*/
|
|
|
|
package com.peanut.modules.app.controller;
|
|
|
|
|
|
import com.peanut.common.utils.R;
|
|
import com.peanut.modules.app.annotation.Login;
|
|
import com.peanut.modules.app.annotation.LoginUser;
|
|
import com.peanut.modules.book.entity.UserEntity;
|
|
import io.swagger.annotations.Api;
|
|
import io.swagger.annotations.ApiOperation;
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
import org.springframework.web.bind.annotation.RequestAttribute;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
/**
|
|
* APP测试接口
|
|
*
|
|
* @author Mark sunlightcs@gmail.com
|
|
*/
|
|
@RestController
|
|
@RequestMapping("/app")
|
|
@Api("APP测试接口")
|
|
public class AppTestController {
|
|
|
|
@Login
|
|
@GetMapping("userInfo")
|
|
@ApiOperation("获取用户信息")
|
|
public R userInfo(@LoginUser UserEntity user){
|
|
return R.ok().put("user", user);
|
|
}
|
|
|
|
@Login
|
|
@GetMapping("userId")
|
|
@ApiOperation("获取用户ID")
|
|
public R userInfo(@RequestAttribute("userId") Integer userId){
|
|
return R.ok().put("userId", userId);
|
|
}
|
|
|
|
@GetMapping("notToken")
|
|
@ApiOperation("忽略Token验证测试")
|
|
public R notToken(){
|
|
return R.ok().put("msg", "无需token也能访问。。。");
|
|
}
|
|
|
|
}
|