Hello,
I am doing a Java first development for a webservice. My imle class looks
like,
public class AddProductInfo implements IAddProductInfo {
public AddProductInfo () {
}
/* (non-Javadoc)
* @see
com.vibes.content.ws.IAddProductInfo#addProductInfo(com.vibes.content.ws.BaseProduct)
*/
public Integer addProductInfo (BaseProduct product) {
_log.info("addProductInfo called.......");
_log.info("Product Name = " + product.getName());
_log.info("Product Description = " + product.getDescription());
return new Integer(10000);
}
/* (non-Javadoc)
* @see
com.vibes.content.ws.IAddProductInfo#addContentProviderInfo(java.lang.Integer,
java.lang.Integer, java.lang.Integer, java.lang.String, boolean)
*/
public Integer addContentProviderInfo (Integer productID, Integer
carrierID, Integer contentProvierID, String contentURL, boolean
isProductDesc) {
_log.info("Product ID = " + productID);
_log.info("Carrier ID = " + carrierID);
_log.info("contentProvierID ID = " + contentProvierID);
return new Integer(10001);
}
}
I would like to make sure this bean (The W.S impl class) is singleton and
also I would like to dependency inject DAO classes created via other spring
configurations files. Can some one poin t me to right documentations?
Thanks
Matt
--
View this message in context:
http://www.nabble.com/CXF-and-other-Spring-bean-configurations-tf4379949.html#a12485392
Sent from the cxf-user mailing list archive at Nabble.com.