我希望通过使用RestTemplate类与Java区域中的服务器进行通信。 但是当我使用RestTemplate访问我的服务器时,它只显示403(禁止)错误。
我的控制器代码:
@Controller(value="homeController")
public class HomeController {
@RequestMapping(value="/test")
public @ResponseBody Map<String, String> test(@RequestParam(value="message", required=false, defaultValue="hell world") String message){
Map<String, String> map = new HashMap<String,String>();
map.put("greeting", message);
return map;
}
客户端代码:
@Test
public void test2(){
HttpHeaders headers = new HttpHeaders();
headers.setContentType(MediaType.APPLICATION_FORM_URLENCODED);
MultiValueMap<String, String> map= new LinkedMultiValueMap<String, String>();
map.add("message", "test");
HttpEntity<MultiValueMap<String, String>> request = new HttpEntity<MultiValueMap<String, String>>(map, headers);
ResponseEntity<String> response = restTemplate.postForEntity( url, request , String.class );
System.out.println(response.getBody());
}
如果代码成功运行,控制台应输出&#34; test&#34;字。
修改 当我使用我的Web浏览器访问控制器时,它会正确显示json数据。
现在, 如何修复代码以在POST方法上与服务器通信? 感谢
答案 0 :(得分:1)
正如您所说,您正在使用spring-security,您只需添加请求拦截器并添加身份验证即可。如果你没有设置密码,Spring会创建一个随机密码;它将被记录在控制台中,因此您只需从那里复制它。
RestTemplate restTemplate = new RestTemplate();
restTemplate.setInterceptors(Collections.singletonList(new BasicAuthorizationInterceptor("username", "yourpassword")));
另一个(更好)选项是自己配置身份验证。一个简单的内存auth会使
@Configuration
@EnableWebSecurity
public class RestSecurityConfiguration extends WebSecurityConfigurerAdapter {
@Override
protected void configure(HttpSecurity http) throws Exception {
http.authorizeRequests().anyRequest().fullyAuthenticated();
http.httpBasic();
http.csrf().disable();
}
@Autowired
public void configureGlobal(AuthenticationManagerBuilder auth) throws Exception {
auth
.inMemoryAuthentication()
.withUser("username").password("yourpassword").roles("ADMIN");
}
}
答案 1 :(得分:0)
您应该指定“test”方法处理的HTTP方法类型。
您可以通过以下方式在@RequestMapping
注释中执行此操作:
@RequestMapping(path="/test", method = {RequestMethod.GET, RequestMethod.POST},
consumes = "application/x-www-form-urlencoded")