3

我想将 Jersey 1.1 与 spring 2.5 一起使用。我需要做的确切的事情是编写一个接口,该接口将作为服务和实现在扩展接口的类中公开。

我无法在 applicationContext.xml 中执行此操作,可能是因为 XSD 已更改。

有人可以提供一个示例代码/片段/文件,他们已经能够成功地实现这一点。

提前致谢, 阿迪尔·艾玛

4

1 回答 1

2

终于明白了.. 新模式确实支持基本 bean 定义,因此可以使用旧技术指定接口和实现类

<bean id="myService" class="org.springframework.aop.framework.ProxyFactoryBean">
<property name="proxyInterfaces">
    <value>com.poc.service.MyServiceInterface</value>
</property>
<property name="target" ref="myServiceimpl" />

于 2009-06-02T12:15:20.243 回答