java - JBoss Error: Could not load class designated by HandlesTypes -
java - JBoss Error: Could not load class designated by HandlesTypes -
i getting these weird jboss errors while deploying war file.
info [org.jboss.web] (msc service thread 1-3) jbas018227: not load class designated handlestypes [com.companyname.classname].: java.lang.classnotfoundexception: com..companyname.classname [module "deployment.projectname.war:main" service module loader] @ org.jboss.modules.moduleclassloader.findclass(moduleclassloader.java:196) [jboss-modules.jar:1.2.0.final-redhat-1]
these info error causing farther issues in deployment.using jboss ead 6.1
check if have .class (compiled file) .war -> classes (directory).
in case, had class implementing webapplicationinitializer interface (spring interface) , wildfly 8.2 couldn't load it... needs have .class file /web-inf/classes folder...
i solved problem moving file web app module (.war) because bug solved in wildfly 9 @ moment. see: enter link description here
java eclipse maven jboss
Comments
Post a Comment