Author: sergeyb
Date: Fri Jul 27 16:09:56 2012
New Revision: 1366433
URL: http://svn.apache.org/viewvc?rev=1366433&view=rev
Log:
Merged revisions 1366432 via svnmerge from
https://svn.apache.org/repos/asf/cxf/trunk
........
r1366432 | sergeyb | 2012-07-27 17:05:59 +0100 (Fri, 27 Jul 2012) | 1 line
[CXF-4444] Updating BusApplicationContextResourceResolver to resolve
resources without names by their types only, as proposed by Matas Veitas
........
Modified:
cxf/branches/2.6.x-fixes/ (props changed)
cxf/branches/2.6.x-fixes/rt/core/src/main/java/org/apache/cxf/bus/spring/BusApplicationContextResourceResolver.java
cxf/branches/2.6.x-fixes/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/BookStoreSpring.java
cxf/branches/2.6.x-fixes/systests/jaxrs/src/test/resources/jaxrs/WEB-INF/beans.xml
Propchange: cxf/branches/2.6.x-fixes/
------------------------------------------------------------------------------
svn:mergeinfo = /cxf/trunk:1366432
Propchange: cxf/branches/2.6.x-fixes/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.
Modified:
cxf/branches/2.6.x-fixes/rt/core/src/main/java/org/apache/cxf/bus/spring/BusApplicationContextResourceResolver.java
URL:
http://svn.apache.org/viewvc/cxf/branches/2.6.x-fixes/rt/core/src/main/java/org/apache/cxf/bus/spring/BusApplicationContextResourceResolver.java?rev=1366433&r1=1366432&r2=1366433&view=diff
==============================================================================
---
cxf/branches/2.6.x-fixes/rt/core/src/main/java/org/apache/cxf/bus/spring/BusApplicationContextResourceResolver.java
(original)
+++
cxf/branches/2.6.x-fixes/rt/core/src/main/java/org/apache/cxf/bus/spring/BusApplicationContextResourceResolver.java
Fri Jul 27 16:09:56 2012
@@ -65,11 +65,15 @@ public class BusApplicationContextResour
}
public <T> T resolve(String resourceName, Class<T> resourceType) {
- if (resourceName == null) {
- return null;
- }
+
try {
- return resourceType.cast(context.getBean(resourceName,
resourceType));
+ T resource = null;
+ if (resourceName == null) {
+ resource = resourceType.cast(context.getBean(resourceType));
+ } else {
+ resource = resourceType.cast(context.getBean(resourceName,
resourceType));
+ }
+ return resource;
} catch (NoSuchBeanDefinitionException def) {
//ignore
}
Modified:
cxf/branches/2.6.x-fixes/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/BookStoreSpring.java
URL:
http://svn.apache.org/viewvc/cxf/branches/2.6.x-fixes/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/BookStoreSpring.java?rev=1366433&r1=1366432&r2=1366433&view=diff
==============================================================================
---
cxf/branches/2.6.x-fixes/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/BookStoreSpring.java
(original)
+++
cxf/branches/2.6.x-fixes/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/BookStoreSpring.java
Fri Jul 27 16:09:56 2012
@@ -26,6 +26,7 @@ import java.util.Map;
import javax.annotation.PostConstruct;
import javax.annotation.PreDestroy;
+import javax.annotation.Resource;
import javax.ws.rs.Consumes;
import javax.ws.rs.GET;
import javax.ws.rs.MatrixParam;
@@ -57,6 +58,8 @@ public class BookStoreSpring {
@Context
private UriInfo ui;
private boolean postConstructCalled;
+ @Resource
+ private Book injectedBook;
public BookStoreSpring() {
init();
@@ -66,6 +69,9 @@ public class BookStoreSpring {
@PostConstruct
public void postConstruct() {
+ if (injectedBook == null) {
+ throw new IllegalStateException("Book resource has not been
injected");
+ }
postConstructCalled = true;
}
Modified:
cxf/branches/2.6.x-fixes/systests/jaxrs/src/test/resources/jaxrs/WEB-INF/beans.xml
URL:
http://svn.apache.org/viewvc/cxf/branches/2.6.x-fixes/systests/jaxrs/src/test/resources/jaxrs/WEB-INF/beans.xml?rev=1366433&r1=1366432&r2=1366433&view=diff
==============================================================================
---
cxf/branches/2.6.x-fixes/systests/jaxrs/src/test/resources/jaxrs/WEB-INF/beans.xml
(original)
+++
cxf/branches/2.6.x-fixes/systests/jaxrs/src/test/resources/jaxrs/WEB-INF/beans.xml
Fri Jul 27 16:09:56 2012
@@ -43,6 +43,7 @@ http://cxf.apache.org/schemas/core.xsd">
<import resource="classpath:META-INF/cxf/cxf-servlet.xml" />
<bean class="org.apache.cxf.systest.jaxrs.BookStoreSpring" id="serviceBean"/>
+ <bean class="org.apache.cxf.systest.jaxrs.Book"/>
<jaxrs:server id="bookservice"
address="/bookstore">