I am deploying Dozer5.3.2 in Weblogic 10.3. After reaching a specific line code is not getting executed neither throwing error. Jumping to Finally block.
Packaged following jars in APP-INF/lib folder.
Kindly do needful.
public static DozerBeanMapper getMapper() {
DozerBeanMapper mapper = null;
try{
String dozer_path ="D:/XYZ/jboss-eap-5.1/jboss-as/server/default/lib/FABXPAProps/dozer_mapping.xml";
System.out.println("dozer_path::"+dozer_path);
dozer_path = "file:///"+dozer_path;
**mapper = new DozerBeanMapper(Arrays.asList(new String[] { dozer_path }));**
System.out.println("mapper::"+mapper);
}catch (Exception e){
StringWriter stack = new StringWriter();
e.printStackTrace(new PrintWriter(stack));
}
return mapper;
}