Questions tagged [welcome-file]
67 questions
0
votes
1 answer
Welcome file not displayed in my Dynamic web project
I am trying to create sample web project to understand the concept. I am facing some issues.
After executing the application on Java web server, Welcome list page doesn't get displayed.
When i googled , basic reason , I found is location of…

GameBuilder
- 1,169
- 4
- 31
- 62
0
votes
1 answer
Root "/" mades server load index.html before pass through the servlet
I have a Servlet that is mapped to the root directory "/":
Main
com.motorola.triage.MainServlet
Main
…

Rodrigo Borba
- 1,334
- 1
- 14
- 21
0
votes
3 answers
How to define Welcome Page in Java EE without a deployment descriptor
In a simple Java EE 8 web application, and since the deployment descriptor is not mandatory, and since a Servlet and a Filter can be registered in a ServletContextListener annotated with @WebListener, how can I define the list of welcome page…

Ali Bassam
- 9,691
- 23
- 67
- 117
0
votes
1 answer
How to access index.html file under WEB-INF
In my sample web application being built on eclipse I tried placing the index.html file under WEB-INF folder and then updating the deployment descriptor web.xml file as below to load the same on…

raikumardipak
- 1,461
- 2
- 29
- 49
0
votes
1 answer
welcome-file index.xhtml gives Not Found in ExternalContext as a Resource
I have a jsf project which deployed to wildfly 10 server . After deployment I navigate to deployment root (http://localhost:8080/{deployment-name}/) get "/home/default.xhtml Not Found in ExternalContext as a Resource" error but when I navigate…

Osman Corluk
- 325
- 1
- 3
- 12
0
votes
1 answer
How do I set home.jsp as my welcome page in java config based spring application
I am developing a spring application (annotation based configurations) in which index.jsp is my default welcome page. but now I don't want to display index.jsp as my welcome page and want to change it to home.jsp. how can I achieve this?
I tried…

Sudharma
- 11
- 1
0
votes
1 answer
welcome page after running dynamic web project
I'm trying to let a welcome page displaying after running a dynamic web project.
When googling I found a lot of tutorials but I can't found the solution.
I share:
The structure of my project (I want that the page welcome.xhtml will displayed by…

Sofia
- 19
- 1
- 7
0
votes
1 answer
websphere welcome-file filter not getting picked up
Below are contents of my web.xml, application is depployed in websphere 8.5
securityFilter
org.springframework.web.filter.DelegatingFilterProxy
…

Rogger296
- 147
- 3
- 15
0
votes
1 answer
Why does "../folder/image.jpg" work when the particular jsp is only run using 'right-click-> run on server'
my setup of folders in Eclipse are as below:
I have configured web.xml to open a welcome file as
jsp/index.jsp
the links, for example
works fine when i run like this:
i.e,. the…


sagar
- 79
- 3
- 8
0
votes
3 answers
eclipse webapp welcome file display error
I m new to eclipse and facing difficulties at the beginning of a new webapp.
index.jsp doesnt display.
web.xml:

Istvan
- 73
- 12
0
votes
2 answers
Glassfish server welcome-file not working?
I have a very simple web.xml file:

Koray Tugay
- 22,894
- 45
- 188
- 319
0
votes
0 answers
file name references to "pizza.html" that does not exist in web content
I am getting the following warning in web.xml in Eclipse Indigo which keeps the project from working. I think my web.xml looks right so I don't understand why I am getting the warning. The warning happens on the welcome file inside the welcome…

mitchj
- 623
- 4
- 9
- 16
0
votes
1 answer
Use different welcome files for local and production
We are running our web application successfully on the google app engine server.We are using index.html file
as a welcome file both in local and production environment. Now we want to use different welocme files for local and prtoduction.
I have…

M.S.Naidu
- 2,239
- 5
- 32
- 56
0
votes
1 answer
using controller mapped URL as welcome-file
In my controller:
@Controller
@RequestMapping(value="Main")
/*the methods */
@RequestMapping(value="/index.do", method = RequestMethod.GET)
In my web.xml:
MyController
…

ROROROOROROR
- 959
- 1
- 14
- 31
0
votes
2 answers