npe
This commit is contained in:
parent
88150d1c63
commit
258dcbb57a
|
@ -13,6 +13,7 @@ import io.renren.modules.activiti.service.ActProcessService;
|
|||
import io.renren.modules.activiti.service.ActRunningService;
|
||||
import io.renren.modules.demanData.dto.TDemandDataDTO;
|
||||
import io.renren.modules.demanData.service.TDemandDataService;
|
||||
import io.renren.modules.security.user.SecurityUser;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiOperation;
|
||||
import org.codehaus.jackson.map.ObjectMapper;
|
||||
|
@ -29,7 +30,7 @@ import java.util.Map;
|
|||
|
||||
@Api(tags = "能力需求")
|
||||
@RestController
|
||||
@RequestMapping("/demand/center")
|
||||
@RequestMapping("/demand_v2/center")
|
||||
public class DemandDataController {
|
||||
private static Logger logger = LoggerFactory.getLogger(ResourceMountController.class);
|
||||
|
||||
|
@ -58,6 +59,8 @@ public class DemandDataController {
|
|||
return new Result().error("联系管理员添加流程:" + key);
|
||||
}
|
||||
|
||||
logger.info(SecurityUser.getUser().toString());
|
||||
|
||||
logger.info("---------------------------------------------------");
|
||||
logger.info(JSONObject.toJSONString(tDemandDataDTO));
|
||||
logger.info("####################################################");
|
||||
|
|
|
@ -2,17 +2,20 @@ package io.renren.modules.security.user;
|
|||
|
||||
import org.apache.shiro.SecurityUtils;
|
||||
import org.apache.shiro.subject.Subject;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
/**
|
||||
* 用户
|
||||
*
|
||||
*/
|
||||
public class SecurityUser {
|
||||
private static Logger logger = LoggerFactory.getLogger(SecurityUser.class);
|
||||
|
||||
public static Subject getSubject() {
|
||||
try {
|
||||
return SecurityUtils.getSubject();
|
||||
} catch (Exception e) {
|
||||
logger.info("获取用户失败:" + e.getMessage());
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue