servlets - Where do I place my property file in java web project? -
this question has answer here:
i working on web project. want know should put property file. use filters. attached screenshot of project too. thanks!
it depends entirely on how load (or intend load) properties file in first place. if load using classloader, place in sources, java files. if load webapp resource, using servletcontext, place under webcontent/web-inf. if want avdownloadable browser, put anywhere under webcontent, except in web-inf. – jb nizet https://stackoverflow.com/users/571407/jb-nizet
Comments
Post a Comment