IntelliJ doesn't update web resources on Wildfly8.2

My web resources (HTML / CSS / JS) are not updating when I use update classes and resources in my J2EE project. I've tried almost every setting in my IntelliJ. When deactivating frames, I also install the update classes and resources - the update is triggered, but it just says no update is needed and the classes are updated even if the web resources were changed before. Updating the classes works. There is really only one way to update HTML files is redistribution.

To summarize my environment:

  • Wildfly8.2
  • IntelliJ14
  • simple J2EE project
  • exploded artifact WAR
  • web content in ProjectName / Webcontent
+3


source to share


1 answer


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

<jsp-config/>

      

to



<jsp-config development="true"/>

      

"Thanks" for the up vote, but this is a fairly general question that can be asked a lot since this was the default wildlife setup.

+7


source







All Articles