Hot deploy not longer working on JBoss ("Scheme change not implemented")

10,267

In my case "Hot code replace failed - Scheme change not implemented" was caused by IDE using another compiler than compiler used to build files deployed on J2EE server. You can binary compare class files in your J2EE archive with class files compiled by IDE in your workspace - they should be identical.

For details please check here.

Share:
10,267
Glorfindel
Author by

Glorfindel

Life is complex – it has both real and imaginary parts. ♦ moderator on Ask Different (Apple.SE), Chess, English Language Learners, Spanish Language, Stack Apps, Meta Stack Exchange and Board & Card Games. Thanks for your trust! #SOreadytohelp – especially if you want to discuss automation of moderation like repairing broken images or links, or need somebody with shovels to help digging into the dark depths of Stack Exchange (including SEDE and the API). You can ping me in Chat, in Charcoal HQ, the Tavern on the Meta, the Teachers' Lounge or any other room you can find me. Pronouns: Script successfully installed. (If you're wondering what this is about, please check the Pronoun Assistant userscript.)

Updated on April 24, 2022

Comments

  • Glorfindel
    Glorfindel about 2 years

    I've got a pretty annoying problem with my JBoss AS 4.2.3 GA.

    Until recently everything was running fine, but now the hot deploy feature is now longer working. And -- as always -- I don't know what I did to cause this behaviour.

    My projects are built with Maven. I've cleaned every target directory, installed the projects and then deployed them to the server. So the sources in Eclipse and the deployed projects on the server should be identical. Inside a method I've added a simple System.out.println("test"); statement and -- BANG! -- I get the following error:

    Hot code replace failed - Scheme change not implemented
    (source: imagefruity.com)

    Do you know a way out of my trouble?