Previously I had only one project named "projectA". I have a XML bean configuration file "service.xml" in "projectA" with bean of class "com.home.karoom.impl.adapter"
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-2.5.xsd">
<bean id="<bean id="espAdapter" class="com.home.karoom.impl.adapter">
<property name="writer" ref="writer" />
</bean>
</beans>
Now, I created new project called "projectB" and moved the bean-class "com.home.karoom.impl.adapter" to "projectB".
Now, the bean-class "com.home.karoom.impl.adapter" doesn't exist anymore in "projectA"
How ca I refer to the new class location in "projectB" using "service.xml" ?