• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

JSP modifications not appearing

 
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I modified a JSP file and generated a WAR file. When I deployed it to the JBoss server I don't see my changes. What could I be doing wrong? Is the new page not getting compiled? Where does JBoss store compiled JSPs?

Thanks
 
Sheriff
Posts: 10445
227
IntelliJ IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Which version of JBoss AS are you using? And how do you deploy the application to the server (copy/paste)? Also is the .war archived or is it deployed as an exploded folder.

If you are deploying the .war as an exploded folder, you can just change the jsp directly in the .war and the changes will be picked up without having to redeploy the application.
 
Randy Alexander
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
JBoss Version 5.1.0.GA.
Deployed using the JBoss Admin Console.
WAR is not exploded.
 
Jaikiran Pai
Sheriff
Posts: 10445
227
IntelliJ IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I haven't much used the admin-console. Are you able to see the same behavior with manual deployment (i.e. copying the .war to the JBOSS_HOME/server/< servername>/deploy folder)?
 
reply
    Bookmark Topic Watch Topic
  • New Topic