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
Post a Comment