I have extended one of the service. But the new change is not reflecting. Even my break points are not stopping at these lines in eclipse. Please help
package com.mycompany.test;
...
public class MyCatalog extends CatalogServiceImpl {
@Override
public Product findProductById(Long productId) {
System.out.println("Test override");//This line is not printing on console
return super.findProductById(productId);
}
}
<bean id="blCatalogService" class="com.mycompany.test.MyCatalog"/>
This forum is in readonly mode and serves as an archive of old information. All posting, registration and commenting abilities have been turned off. To get help, the Broadleaf team reguarly monitors the broadleaf-commerce tag on Stack Overflow so please ask your questions there.