Results 1 to 2 of 2
- 06-05-2007, 05:06 AM #1
Member
- Join Date
- Jun 2007
- Posts
- 92
- Rep Power
- 0
Log4J, problem with Hibernate and Spring
I have this doubt,if somebody can helps me it would be great...I have already read in a lot of websites also I published it in other forums, but everything what they said to me was not successful, as I am working with websphere 5.1, this it must be the indicated forum...
How can I do the project web reads the configuration of the log4j.properties?, I tried adding it to application context, but I haven't had the expected results, also adding listeners in the web.xml, ah! and also throwing the file within the src folder.
Marcus :cool:
- 06-06-2007, 03:22 AM #2
Senior Member
- Join Date
- Jun 2007
- Posts
- 114
- Rep Power
- 0
RE: Log4J, problem with Hibernate and Spring
To log you must do an instance of the Logger class, and then to put myLogger.info for level of info, debug for level of debug and so on.
Now if you don't see what does log in, maybe it's a .propierties configuration problem or perhaps you have log4j in level debug and you do logger.info and it doesn't show you because of that.
Log other things and do a log with that same level, thus must work…
Supposing that your .properties "key" are in package calls "data", you can use a code similar to this
Albert :rolleyes:Java Code:String key = "key"; Properties prop = new Properties(); InputStream is = this.class.getResourceAsStream ("/data/config.properties"); prop.load (is); String val = prop.getProperty (key);
Similar Threads
-
composite-id problem hibernate
By javadev in forum JDBCReplies: 14Last Post: 07-27-2009, 06:30 PM -
Regarding Log4j
By sidiq in forum New To JavaReplies: 0Last Post: 04-07-2008, 07:35 PM -
Lead Java developer -- Spring and Hibernate experience
By orjueladiego in forum Jobs OfferedReplies: 0Last Post: 10-29-2007, 01:50 PM -
problem with hibernate and oracle 8i
By javadev in forum JDBCReplies: 4Last Post: 08-09-2007, 02:21 PM -
org.hibernate.ejb.Version <clinit> INFO: Hibernate EntityManager 3.2.0.CR1
By Heather in forum JDBCReplies: 2Last Post: 06-30-2007, 03:01 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks