Eric
Eric

Reputation: 1023

Is it possible to deploy an exploded war file to JBoss 4.2.3?

I'm trying to use IntelliJ to deploy exploded wars to JBoss 4.2.3. I seem to have no problem with doing this with 5.0.1.

But when I switch the server to 4.2.3, IntelliJ tells me that the extension for the exploded war is invalid, which makes very little sense, given that it is an exploded war. It seems to be expecting a .war file extension.

It seems that JBoss 4.2.3 can only take compressed war files, though I haven't found documentation to prove it.

Is there a way to configure JBoss 4.2.3 to accept exploded wars?

Upvotes: 2

Views: 3781

Answers (1)

CrazyCoder
CrazyCoder

Reputation: 402375

JBoss 4.x requires the exploded directory to have .war in the end of its name, adjust IDEA artifact settings and it will work fine.

Upvotes: 7

Related Questions