java错题集

1.reponse可以得到,但浏览器提示No message body writer has been found for...

restapi中没有加下面这个。

@Path("/")
@Produces({ MediaType.APPLICATION_JSON })
@Consumes({ MediaType.APPLICATION_JSON })

2.启动时Configuration problem: Only one AsyncAnnotationBeanPostProcessor may exist within the context.

spring的配置文件中,多个定时器重复加载就会报这个错

<!-- 定时器 -->
<task:annotation-driven></task:annotation-driven>

 

你可能感兴趣的:(java错题集)