UIControls
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-4.2.xsd
">
<!-- Aop Bean -->
<bean id="wsChecker" class="xn.safephone.webapp.aop.AopWebServiceChecker"/>
<!-- Aop Configuration -->
<aop:config>
<aop:aspect id="aopWsChecker" ref="wsChecker">
<aop:pointcut id="aopWs" expression="execution (* xn.safephone.webapp.webservices.*.*(..))"/>
<aop:around method="doAround" pointcut-ref="aopWs"/>
</aop:aspect>
</aop:config>
</beans>
<servlet>
<servlet-name>REST-Servlet</servlet-name>
<servlet-class>com.sun.jersey.spi.spring.container.servlet.SpringServlet</servlet-class>
<init-param>
<param-name>com.sun.jersey.config.property.packages</param-name>
<param-value>xn.safephone.webapp.webservices</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>REST-Servlet</servlet-name>
<url-pattern>/ws/*</url-pattern>
</servlet-mapping>
@GET
@Path("test")
@Produces("text/plain")
public String test() {
return "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx";
}
如果我使用AOP运行Web服务,则没有错误,但客户端返回“204 No Content”。如果我禁用AOP,一切都很好。那是为什么?
非常感谢!
答案 0 :(得分:1)
问题在于,通过周围建议,您需要返回一个值;该值是实际建议的方法调用的返回值。原因是,如果需要,around-advice允许您修改返回值。
目前您正在返回void,这会影响资源方法调用返回null。返回nul时Jersey的默认行为是发送没有数据的204 No Content,因为没有数据。
在方法上调用joinPoint.proceed()
的结果返回一个值,将是该方法调用的返回值。因此,只需获取对该值的引用并将其返回。
public Object doAround(ProceedingJoinPoint joinPoint) throws Throwable {
System.out.println("1");
Object retValue = joinPoint.proceed();
System.out.println("2");
return retValue;
}
另见: