java - NoClassDefFoundError when using resteasy @Path annotation -


i have controller class annotated @path annotation resteasy. runs normally.

but when extend class basecontroller, located in project (included in project build path), error of noclassdeffounderror when trying reference basecontroller.

works:

@path("/") public class controller {...} 

works:

@path("/") public class controller extends basecontroller {...} //basecontroler same project 

works:

public class controller extends basecontroller {...} //basecontroler other project 

doesn´t work: (noclassdeffounderror)

@path("/") public class controller extends basecontroller {...} //basecontroler other project 

any idea on this?

your problem same question: java project unable refer project in case, "otherprojectclass" not instatied.


Comments

Popular posts from this blog

javascript - how to protect a flash video from refresh? -

visual studio 2010 - Connect to informix database windows form application -

android - Associate same looper with different threads -