I want to logging to file and set it in properties file, because default logger.info() output goes to console and in web application there is no console in my case.
As Navi says... it goes in src/main/resources
Just to clarify this subject... the logging.properties must go in WEB-INF/classes
directory.
If you are using some kind of framework for organizing your project, you must find out where to place the file in order to stay in WEB-INF/classes
If you are using maven to organize the web app, you must know that everything that lies in src/main/resources
goes to WEB-INF/classes.