0
votes
0answers
17 views

Use ehcache with Spring and Hibernate

I am creating a Java web application using Spring and Hibernate(created using Maven). I want to introduce Eh-cache. But I am new to this and need to know from the scratch. I have a Entity class(A ...
0
votes
1answer
21 views

javax.persistence.PersistenceException: No Persistence provider for EntityManager named

I'm trying to set up a simple jpa 2.0 project by following the information provided by my teacher's documentation . I've been on this for hours now, but no matter what I do I always get this exception ...
0
votes
0answers
18 views

Compilation failure Failure executing javac, but could not parse the error: The system cannot find the path specified

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 ...
1
vote
1answer
14 views

org.hibernate.InvalidMappingException: Could not parse mapping document from resource *.hbm.xml

I know this question has been asked a lot, but I read almost every one of them but non of them helped me. I'm writing an eclipse maven project with hibernate and I'm getting this error: ...
0
votes
1answer
41 views

JAR File Fails - Maven & Hibernate Project

I have an app that do simple CRUDs ops (Create, read, update, delete with MySQL). This app is with maven & hibernate. Everything is fine when I debug and execute the app into the IDE (eclipse). ...
0
votes
0answers
60 views

Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:

I am using Maven 3 and JDK 1.7. When I tried to do mvn install, I am getting the following errors [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1: compile ...
0
votes
1answer
41 views

Invocation of init method failed; nested exception is org.hibernate.HibernateException: Unable to locate current JTA transaction

When I run this code it gives the error: forInvocation of init method failed; nested exception is org.hibernate.HibernateException: Unable to locate current JTA transaction I have jta properties ...
0
votes
2answers
52 views

Could not instantiate bean : Constructor threw exception; nested exception is java.lang.NullPointerException

package baseDao; public interface BaseDao { public void create(Object obj); public void delete(Object obj); public void update(Object obj); public void get(Object obj); } package ...
-5
votes
0answers
50 views

how to create a swing application in maven with spring hibernate and server as tomcat [closed]

how to create a swing application in maven with spring hibernate and server as tomcat I have to create a swing web based application. what should be basic configuration for this in server.
0
votes
1answer
53 views

Cannot find class [org.springframework.orm.hibernate3.annotation.AnnotationSessionFactory] for bean with name 'sessionFactory'

i created a project in spring using maven dependencies but i am getting the above mentioned error. i changed the version of hibernate dependency but stil it does nt get resolved here is the code: ...
3
votes
1answer
37 views

Hibernate FileZippedJarVisitor error in test jar

I have a structure more or less like this: -- ProjectA +-- ProjectA Persistence +-- ProjectA EJBs +- ProjectB +-- lots of ProjectB childs... Supposing that in ProjectB I want to write some tests. ...
0
votes
1answer
28 views

hibernate one to many single direction

I'm trying to make some hibernate stuff and create sql scripts automatically based on the hibernate annotations. Here is what I have: Schedule class: @Entity @Table(name = ...
0
votes
1answer
93 views

Jboss Services failed to start: service jboss.persistenceunit

For some reason I'm not able to deploy my project anymore. I get the following error message: 23:03:58,847 INFO [org.jboss.modules] JBoss Modules version 1.1.1.GA 23:03:59,219 INFO ...
0
votes
1answer
77 views

Failed to load ApplicationContext

Currently I'm setting-up a Spring MVC + Hibernate + Maven Web Application. Im stack with a JUnit error forbidding the run of my application with tomcat Here is the JUnit failure trace : ...
1
vote
1answer
32 views

Use Ivy to get latest X.X.X.Final Hibernate

I am using IvyDE in Eclipse and getting unresolved dependency: org.hibernate#hibernate-core;final: not found using code: ivysettings.xml <ivysettings> <settings ...
0
votes
1answer
40 views

maven don't work with me, is there any dependency missing?

I'm new to maven, I'm using it with eclipse on Windows 7. And I'm trying to use maven with my test project and here is my pom.xml file : <project xmlns="http://maven.apache.org/POM/4.0.0" ...
0
votes
2answers
26 views

Configure pom.xml for hibernate 3.6

I tried to conigure pom.xml file for my Spring 3 & Hibernate 3.6 application. The relevant part of pom.xml looks like this: <dependency> <groupId>mysql</groupId> ...
0
votes
1answer
46 views

Error creating bean with name 'transactionManager'

I'm getting this error: ERROR org.springframework.web.context.ContextLoader - Context initialization failed org.springframework.beans.factory.BeanCreationException: Error creating bean with name ...
1
vote
1answer
70 views

MappingException: Unknown entity

Am using Spring, Maven, Hibernate , MVC project. After building the project and installing the dependencies I got this exception. It seems strange. All test units sucseed and no indicator that ...
0
votes
3answers
87 views

Looking for in memory database easy to use with Spring, Hibernate, JavaConfig and Maven

I am looking for in memory database easy to use with Spring, Hibernate, JavaConfig and Maven. I am working on a example Spring Java Application using Spring, Hibernate, JavaConfig and Maven and I ...
0
votes
0answers
57 views

Hibernate core dependency with maven (Using intellij)

I'm getting an error with IntelliJ inspector when I add hibernate dependency in pom.xml: <dependency> <groupId>org.hibernate</groupId> ...
0
votes
1answer
124 views

maven + jpa + hibernate + spring. too slow

I'm doing a project with maven, jpa, spring and hibernate. The class TopicFacadeTest takes 20 minutes o_O Inserts and deletes are very slow. The CPU is between 1% and 3%. I have 6G of RAM. What's the ...
0
votes
0answers
103 views

Again… Could not initialize class org.hibernate.ejb.Ejb3Configuration

I've got a real headache with it. I've searched the Internet and read a lot of answers for that problem but it still occurs on my server :/ Please help me. I am new in Java EE and developing JSF ...
1
vote
0answers
165 views

Using different orm.xml configurations in multi-module maven projects

I have a set of maven projects defined based on a layered architecture, as follows: 1- domain -src/main/java -src/main/resources/META-INF/ -src/test/java -src/test/resources/META-INF/ 2- ...
0
votes
0answers
35 views

Use Hibernate 3.6 in Glassfish 3.1.2

I would like to update Hibernate JPA provider for Glassfish 3.1.2. However, in the updatetool, I only see 3.5... but I would like to use 3.6.. I prefer to use define it in my maven pom.xml file, but ...
1
vote
1answer
62 views

persistence.xml - Error parsing XML: XML InputStream(1) Premature end of file

I am getting this error when i'm trying to create an entity manager in my code. EntityManagerFactory emf = Persistence.createEntityManagerFactory("puDS1", myproperties); Any hints on why this could ...
2
votes
4answers
60 views

Does Maven need to explicitly specify the dependency that Spring/Hibernate dependented?

I'm new to Maven, I try to use Maven with Spring, Hibernate in my project. After go though the Spring and Hibernate reference, I found that "there is no need to explicitly specify the dependent ...
0
votes
0answers
245 views

Exception starting filter struts2 Unable to load configuration. - action

I am new in maven and i am trying to build an application using struts2, Hibernate and spring3. when i try to deploy my app on tomcat server i get following error. SEVERE: Exception starting filter ...
0
votes
1answer
361 views

java.lang.NoClassDefFoundError: org/springframework/beans/factory/NoUniqueBeanDefinitionException

I am trying to create a simple project using Spring MVC+JPA Hibernate+maven. My web.xml is s follows <servlet> <servlet-name>ContactManager</servlet-name> ...
0
votes
1answer
94 views

javax.servlet.ServletException: Servlet.init() exception when running example from “viralpatel.net”

I am getting an error when trying to run the following spring3-mvc-hibernate-maven-tutorial-eclipse-example : HTTP Status 500 - Servlet.init() for servlet fitTrackerServlet threw exception ...
0
votes
1answer
123 views

getting error at spring-hibernate-maven project

I am getting "class file functionContext not found" error when I try to run project. It was running without errors but after i write some unit tests and delete them It started to give this error. Here ...
0
votes
3answers
70 views

NoSuchMethodException from LocalSessionFactoryBuilder

Im curently working on a project using Spring (3.1.0) and Hibernate (4.2.0.Final) together and i get this error when loading the app. I think that this is a Maven problem but i can't see wich one. I ...
0
votes
1answer
230 views

Eclipse STS Hibernate error: “Fetching children of Database”. org.slf4j.spi.LocationAwareLogger.log

I have looked and tried various solutions dealing with the SLF4J related issue but nothing has worked. All I am trying to do is use the Hibernate plug in inside STS. I Simply click on the Hibernate ...
0
votes
3answers
74 views

Spring3.0+Hibernate4.0 pom.xml file

I was trying to build a spring3.0 and Hibernate4.0 project using maven..In my dao folder, I have this file interface for the dao(data abstract object) but the import org.hibernate.criterion.Criterion ...
0
votes
1answer
61 views

maven+gwt+eclipse

It appears I have a problem configuring maven in eclipse. i've installed through eclipse marketplace maven for eclipse and maven wtp and it eclipse won't recognize the first line of the POM. not to ...
1
vote
0answers
425 views

No matching bean of type [org.hibernate.SessionFactory] found for dependency

I'm a beginner in the Spring MVC. I encounter a problem "No matching bean of type [org.hibernate.SessionFactory] found for dependency: expected at least 1 bean which qualifies as autowire candidate ...
1
vote
1answer
86 views

Solving Maven dependency error in Netbeans

Why am I receiving the following error? I am using netbeans and not sure which commend line should I use to re-run the maven and follow the error's instructions. I have found this as well but still ...
0
votes
2answers
131 views

Hibernate instrumentation transform failure: cannot find class (HHH000373)

I'm attempting to enable Hibernate instrumentation for the entities in a Maven project. Instrumentation seems to work normally on entities with only fields of standard types defined by the Java API ...
0
votes
2answers
59 views

Maven plugin in Eclipse can't find hibernate version over 3.6.0

When I try to find hibernate 4.1.0 with eclipse pom editor, I can only find version 3.6.0, I am looking >4.0.0. Hire is my pom.xml file: <modelVersion>4.0.0</modelVersion> ...
0
votes
0answers
51 views

Referring to the artifactId of a maven dependency jar from persistence.xml

We're working with JPA and are trying to stick to standard spec (and avoiding Hibernate-specific features). We use one project (let's call it X) inside another project (A) as a Maven dependency. We ...
0
votes
1answer
207 views

Hibernate Unable to find a default provider

Getting error : org.hibernate.HibernateException: Error applying BeanValidation relational constraints at ...
0
votes
1answer
200 views

Access sessionFactory using Jboss Jndi lookup e.g. java:/hibernate/SessionFactory

I'm trying to access sessionFactory using Jboss7.1.1.Final Jndi lookup under maven. While deploying it I'm getting in log following 17:28:33,670 INFO [org.hibernate.cfg.Configuration] ...
0
votes
0answers
159 views

Im getting org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException

I am trying to use solrj with my spring-mvc i have included the following dependency for solrj version 4.1.0 and i get the exception no declaration can be found for element 'solr:solr-server' like ...
0
votes
0answers
49 views

deploying local WAR in test environment without teamcity

I have a JAVA application that is built using Maven with Spring and Hibernate . My project uses TeamCity to generate the new WAR whenever any code change is commited into SVN.I need to find an ...
1
vote
2answers
340 views

Hibernate exception hibernate.cfg.xml not found

I'm trying to start project with Hibernate and Maven. I got such exception: SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder". SLF4J: Defaulting to no-operation (NOP) logger ...
2
votes
3answers
253 views

Im getting java.lang.StackOverflowError while running my project?

I'm trying to implement solr search with Spring and postgres using maven but on running the appilcation i get 404 with the exception Exception processing loader WebappLoader[/solrjExample] background ...
1
vote
2answers
182 views

Hibernate not creating tables with Maven and Spring-mvc

I have a simple project build with maven2 and Spring3MVC running on TomCat 6. I want to have hibernate to create tables on runtime if they don't exist. However I had no success in it. Here are my ...
0
votes
1answer
118 views

FieldInterceptionHelper class not found

I have two spring mvc application with similar code. In fact the second application is based on the first one only with different name. However during validation of entity (before insertion) I get the ...
1
vote
2answers
240 views

I have added the required dependancies but still running into an error [duplicate]

I am following this link Link to run my hibernate application. Although I have added all the required dependencies but it runs into following error. The following artifacts could not be resolved: ...
2
votes
1answer
110 views

accessing same hibernate.cfg.xml in two applications

I have webapplications with maven and hibernate. I have 2 wars and a jar which contains common database code including getting sessionfactory. I use ear in which all above 3 are webmodules. At ...

1 2 3 4 5 7