Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

IntelliJ does not update web resources on Wildfly8.2

My web resources (HTML/CSS/JS) are not updated when I use Update classes and resources in my J2EE project. I tried almost every setting in my IntelliJ. On Frame deactivation I set Update classes and resources too - update is triggered but it just says update not needed and classes are up to date even if web resources has been changed before. Updating classes works. Actually only one way how to update HTML files is to redeploy.

To sum up my environment:

  • Wildfly8.2
  • IntelliJ14
  • simple J2EE project
  • exploded WAR artifact
  • web content in ProjectName/Webcontent
like image 407
Mejmo Avatar asked Jan 07 '15 16:01

Mejmo


1 Answers

The problem was in standalone.xml in my JBoss installation. Had to rewrite

<jsp-config/>

to

<jsp-config development="true"/>

"Thanks" for vote down, but this is quite general question which can be often asked as this was default installation of wildfly.

like image 151
Mejmo Avatar answered Oct 11 '22 03:10

Mejmo