假设我有以下类代码:
@EnableWebSecurity
@Configuration
public static class ApiWebSecurityConfigurationAdapter extends WebSecurityConfigurerAdapter {
@Override
protected void configure(HttpSecurity http) throws Exception {
http.authorizeRequests().antMatchers("/api/**").hasIpAddress("runtime other device ip");
}
}
在运行时,当请求进入系统时,我想验证它是否来自“运行时其他设备 ip”,这在检索请求时可能会有所不同。
请假设我有一个实用程序可以检索此“运行时其他设备 ip”Utility.getOtherDeviceIP();
有任何想法吗?
谢谢