Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,14 @@ public EjbJarInfo buildInfo(final EjbModule jar) throws OpenEJBException {
}
}

final String message = messages.format("conf.0008", jar.getJarLocation(), String.valueOf(beansInEjbJar), String.valueOf(beansDeployed));
final String message = messages.format(
"conf.0008",
jar.getJarLocation(),
String.valueOf(beansInEjbJar),
String.valueOf(beansDeployed),
String.join(", ", ejbds.keySet()),
String.join(", ", jar.getEjbJar().getEnterpriseBeansByEjbName().keySet())
);
logger.warning(message);
throw new OpenEJBException(message);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ conf.0004=Jar not loaded. {0}. {1}
conf.0005=Unable to load properties file {0}. {1}
conf.0006=Properties file {0} not found. Received message: {1}
conf.0007=Cannot read properties file {0}. {1}
conf.0008=Cannot Load jar {0}. The number of beans deployed ({2}) does not match the number of beans actually in the jar ({1}). Please redeploy this jar.
conf.0008=Cannot Load jar {0}. The number of beans deployed ({2}) does not match the number of beans actually in the jar ({1}). Deployed beans: {3}. Beans in ejb-jar.xml: {4}. Please redeploy this jar.
conf.0018=No openejb-jar Descriptor Data for ejb {0} in jar {1}.
conf.0009=Security role reference {0} is not linked. The reference will be linked to the OpenEJB default security role. Bean name is {1}, jar file is {2}.
conf.0010=Properties file {0} for JndiProvider {1} not found. Received message: {2}
Expand Down