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

python - Referencing Data From a 2D Histogram -

php - MySQL LIMIT results with INNER JOIN with more than 2 tables -

c# - Derived UserControl layout resets after build -