我在stackoverflow上看过其他类似的帖子 - 主要是海报上的链接不同于RESTController中的服务方法解析的链接。我确定(在下面解释)我没有犯这个错误,但仍然不适合我...
我正在为Servlet 2.5容器(weblogic 10.3.6)编写一个基于Spring MVC4的REST控制器,我被建议为我的web应用程序项目遵循sample web.xml
我已经关注了这个web.xml,但我不确定这篇文章中带有值的contextAttribute(如下所示)是什么..
<servlet>
<servlet-name>appServlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextAttribute</param-name>
<param-value>org.springframework.web.context.WebApplicationContext.ROOT</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
当我运行我的webapp并使用REST客户端点击它时,我一直收到http 404 not found错误。完整的错误发布在这里 http://paste.ubuntu.com/13966788/
这是错误代码段
08:44:34.368 [main] DEBUG o.s.web.client.RestTemplate - GET request for "http://localhost:7001/demo-0.0.1-SNAPSHOT/customers/2" resulted in 404 (Not Found); inv
oking error handlerTests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 0.402 sec <<< FAILURE! - in demo.DemoApplicationTests
contextLoaded(demo.DemoApplicationTests) Time elapsed: 0.042 sec <<< ERROR!
org.springframework.web.client.HttpClientErrorException: 404 Not Found
at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:91)
at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:641)
at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:597)
at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:557)
at org.springframework.web.client.RestTemplate.getForEntity(RestTemplate.java:289)
at demo.DemoApplicationTests.contextLoaded(DemoApplicationTests.java:45)
我不确定我的上下文根目录是什么,weblogic控制台中部署的webapp显示值'demo-0.0.1-SNAPSHOT'
我的REST控制器方法的@RequestMapping是/ customers / {id}。
@RestController
public class CustomerRestController {
@Autowired
private CustomerRepository customerRepository;
@RequestMapping("/customers/{id}")
CustomerProtos.Customer customer(@PathVariable Integer id) {
return this.customerRepository.findById(id);
}
所以我假设我的网址路径看起来像
localhost:7001/demo-0.0.1-SNAPSHOT/customers/2
但是当我点击此URL时(在浏览器和基于Spring的测试客户端中) 我一直得到http 404找不到错误。
这是我的春季测试客户..
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration
public class DemoApplicationTests {
@Configuration
public static class RestClientConfiguration {
@Bean
RestTemplate restTemplate(ProtobufHttpMessageConverter hmc) {
return new RestTemplate(Arrays.asList(hmc));
}
@Bean
ProtobufHttpMessageConverter protobufHttpMessageConverter() {
return new ProtobufHttpMessageConverter();
}
}
@Autowired
private RestTemplate restTemplate;
@Test
public void contextLoaded() {
ResponseEntity<CustomerProtos.Customer> customer = restTemplate.getForEntity(
"http://localhost:7001/demo-0.0.1-SNAPSHOT/customers/2", CustomerProtos.Customer.class);
System.out.println("customer retrieved: " + customer.toString());
}
我想知道contextAttribute是否在这里做了些什么。有什么想法吗?
我在这里做的唯一另一件事是代替httpMessageConverter,我正在注册Spring MVC4的ProtoBufHttpMessageConverter。但在这种情况下不应该有所作为。
我的代码在github上共享https://goo.gl/cVNEPT
答案 0 :(得分:1)
你是否在web.xml中定义了servletMapping?
<servlet-mapping>
<servlet-name>appServlet</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
此外,公开您的方法
@RequestMapping("/customers/{id}")
public CustomerProtos.Customer customer(@PathVariable Integer id)
您是否看到请求映射路径已在日志中注册?