com.wangshanhai.power.service.impl.PowerExtServiceImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of shanhai-power-spring-boot-starter Show documentation
Show all versions of shanhai-power-spring-boot-starter Show documentation
山海Power - 基于SpringBoot的权限组件,极致精简,只为满足简单需要。
The newest version!
package com.wangshanhai.power.service.impl;
import com.wangshanhai.power.service.PowerExtService;
import javax.servlet.http.HttpServletRequest;
/**
* 扩展服务
* @author Shmily
*/
public class PowerExtServiceImpl implements PowerExtService {
@Override
public String getIp(HttpServletRequest request) {
if(request!=null){
return request.getRemoteHost();
}
return "-";
}
}