Skip to content

Instantly share code, notes, and snippets.

View flaviossantana's full-sized avatar
🤖
Focusing

Flávio Santana flaviossantana

🤖
Focusing
View GitHub Profile
@rponte
rponte / ClientHostResolver.java
Last active April 27, 2021 18:03
SpringBoot: how to obtain the user IP address?
package br.com.zup.edu.nossocartao.propostas.shared.web;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import org.springframework.web.context.annotation.RequestScope;
import javax.servlet.http.HttpServletRequest;
import java.util.Objects;
import java.util.stream.Stream;
@Component