default to html welcome before jsp

git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1205 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
Greg Wilkins 2010-01-18 22:31:58 +00:00
parent 59ed68cdde
commit 5267a69aa3
1 changed files with 1 additions and 1 deletions

View File

@ -164,7 +164,7 @@ public class DefaultServlet extends HttpServlet implements ResourceFactory
_welcomes = _contextHandler.getWelcomeFiles();
if (_welcomes==null)
_welcomes=new String[] {"index.jsp","index.html"};
_welcomes=new String[] {"index.html","index.jsp"};
_acceptRanges=getInitBoolean("acceptRanges",_acceptRanges);
_dirAllowed=getInitBoolean("dirAllowed",_dirAllowed);