Ive been trying to set up a server that are going to expose some public web services. I do have a lot of problems when I try to @Autowire objects, and setup a connection with a MySQL database. When I fix one error, 10 new ones show up, but it seems like this EntityManager and EntityManagerFactory problem is the main error.
Ive tried both to deploy on a cloudfoundry server, and a local jetty server. On my local jetty server I get this error:
when my xml files (pom.xml, servlet-context.xml and persistence.xml) looks like this:
My User object implementation can be seen underneath the java error linked to above. (Couldnt use more than 2 links in a post)
The errors in general is about not being able to autowire fields, but as Ive understood it, this is because of the entitymanager problems. Am I right? I might suspect that there are some version problems in the pom.xml file.
Any help is much appreciated, way to many days have gone now without any improvement!
Jon