How to solve missing hibernate support library in copied netbeans project

I am working on this Java code using NetBeans. I am copying the code and trying to run and get the following error

Warning: Could not find file / home / blackbird / NetBeansProjects / XCRIBuilder / $ {libs.hibernate-support.classpath} to copy **

in NetBeans --> project properties

it says the library is missing hibernate-support

, but I can see that a few hibernation related jar files have already been added to the library.

is there any classPath to configure for hibernate? if i create a new java web application project in NetBeans then it wont give me this error

I am running NetBeans on linux ubuntu.

I really need to be guided by this

Thanks a lot in extended

+3


source to share


1 answer


Although this is a pretty old question ...

In Project properties->Libraries

I removed the link hibernate-support

and then added hibernate directly from Netbeans, i.e.Add Library -> Global Libraries -> Hibernate 4.3.x



Clean and build and everything will be fine.

+3


source







All Articles