I had a similar problem and solved this by putting the log4j entry in the web xml and making sure it is first to get read [ie at the top of the file].
<!-- Log4j configuration -->...
Type: Posts; User: cjems; Keyword(s):
I had a similar problem and solved this by putting the log4j entry in the web xml and making sure it is first to get read [ie at the top of the file].
<!-- Log4j configuration -->...
I am trying to inject a dao into a class. When I deploy the application I can see that the dao is being created but when I try to call it , the dao is null
WEB.XML
<?xml version="1.0"...
I have a User that has a list of ShippingAddresses
public class User {
private int id;
private String firstName;
private String lastName;
private String userName;
private String...