0

I see it in this thread: Why are my JSP changes are not reflected without restarting Tomcat? -do I have to specify development property to true if the true is by default?? But i still setted it, then removed the two mentioned files, restarted my IDE, but it's still not working, so what exactly should I do? THIS QUESTION ALREADY HAS ANSWER HERE? I told i tried to do it but it's not working, check comments below...ah...

Community
  • 1
  • 1
Charlie Harper
  • 379
  • 4
  • 7
  • 21
  • Did you tried to select 'automatically publish when resources change' tomcat publish settings?(in eclipse). – İlker Korkut Jul 05 '14 at 18:11
  • I'm using InteliJ idea, but i'll take a look for similiar option – Charlie Harper Jul 05 '14 at 18:12
  • Probably needless to say, but also ensure it is not a browser cache. – Joop Eggen Jul 05 '14 at 18:15
  • no it's not a browser cache for sure, i had an option "upload changed files automatically to server" setted to "never", now i changed it to always, but i have to set the default server somehow (intelij idea) – Charlie Harper Jul 05 '14 at 18:18
  • Is there a intelij user?? I configured default server like this: http://www.jetbrains.com/idea/webhelp/creating-an-in-place-server-configuration.html#defaultServer but now i'm getting a message: default server 'server' does not need automatic upload, it already contains project, so I'm confused right now.. – Charlie Harper Jul 05 '14 at 18:27

1 Answers1

-1

Install Apache on your PC. Put the JSP file in the /htdocs/JSP folder in the Apache installation. You will have to create the JSP folder. Name the JSP file index.jsp. Open Apache and start the web service (the top one. Click Start) To view it, go to your browser and type in the following URL: 127.0.0.1/JSP. If that doesn't work, type in 127.0.0.1/JSP/index.jsp

This should help.