public class ProductTypeAction extends ActionSupport{
private ProductType productType ;
@Resource(name="productTypeServiceBean")
private ProductTypeService productTypeService;
public String getProductTypeById() throws Exception {
productType = productTypeService.find(ProductType.class, 3);
return "SUCCESS";
}
}
struts.xml