0
votes
0answers
3 views

Maven Spring dependency repository

I am developing a Spring application using Maven and I would like to find the most comprehensive and up-to-date repository with the most dependencies. So far I have found three repos, but I am unsure ...
0
votes
1answer
18 views

ReflectionToStringBuilder errors in Maven Project

Some of my Roo generated .aj files seem to be generating errors as below. I can see commons-lang3-3.1.jar in my Maven Dependencies. I have added this to my pom.xml <dependency> ...
0
votes
0answers
17 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
0answers
18 views

Using liquibase file paths via both maven and spring

I update scheme and initial data in spring context using the following beean: <bean id="liquibase" class="liquibase.integration.spring.SpringLiquibase"> <property name="dataSource" ...
1
vote
2answers
40 views

Maven: Parent Spring Webapp

I would like to have a framework base code for all my webapps using Maven and Spring. Tomcat7 is starting correctly on my child project, but I get a 404 when trying to open index.html. Parent POM: ...
0
votes
1answer
34 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
0answers
20 views

Running Spring WS Samples on github results in maven errors

I'm trying to run the mtom example on spring-ws: https://github.com/poutsma/spring-ws/tree/master/samples/mtom under the server directory when I run mvm:jetty run I get the following error: [ERROR] ...
0
votes
2answers
45 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
49 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.
1
vote
1answer
62 views

Spring Maven - context configuration in resources folder

As I found in other question at stackoverflow, it is better to keep the configuration of spring in src/main/resources folder. However when I use mvn jetty:run it tries to load context configuration ...
0
votes
0answers
14 views

Spring elcipse - getting VMWare vFrabric server to manage two different projects

I will have two separate projects as part of my final war file. A Maven Spring MVC project called my-project-online (contains the web project, will need to reference the project below somehow) ...
-2
votes
0answers
54 views

An error occurred while filtering resources

I has mavened my Spring project (web dymamic) and there is a error that i can't fix: "An error occurred while filtering resources" I suppose that it's a POM issue, but I'm not sure. In this project ...
0
votes
2answers
64 views

Spring property placeholder not working

I've read similar issues on the stacoverflow.com, but none of the solulutions helped me. The following configuration I use (maven project structure): the src/main/resources/properties/app.properties ...
0
votes
1answer
29 views

How to switch from Hibernate to OpenJpa

I've an Hibernate project developed with Spring MVC 3 and built with Maven 3. I manage persistence with JPA in particular Hibernate Framework; I guess that isn't so difficult to configure my existing ...
0
votes
0answers
82 views

Java exception when spring loading context configuration file - occurs in UNIX but not Windows

I've been stuck with this one for a while now. I have created a mini subset of the project where this occurs and reproduced the issue. Basically I'm running a test which loads a spring context file ...
0
votes
1answer
36 views

Can't deploy webservice in tomcat

I have developed a webservice with Spring/Maven/Eclipse. I'm using tomcat7 in my eclipse to test the application. In my computer it's working fine, and now I'm trying to install all the development ...
0
votes
0answers
32 views

Where can I find OpenJpa 2 with Spring and Maven3 integration?

could you give me links of some working and decent example of projects developed with maven, Spring MVC framework using OpenJpa 2 for data Persistence, I've looked for hours and studied all examples, ...
0
votes
1answer
27 views

java.lang.ClassNotFoundException: org.springframework.web.context.support.AnnotationConfigApplicationContext

org.springframework.spring-webmvc includes spring-context so I'm not sure why I'm not seeing org.springframework.web.context.support.AnnotationConfigApplicationContext in may application. What am I ...
-1
votes
1answer
34 views

What is a solution develop correctly this Spring and JPA webapp example?

I have a Controller for my webapp developed with Spring mvc under Maven 3. In this controller I've @Autowired PersonDAO dbController I want to use JPA 2.0 to manage persistance so I rewrited my ...
0
votes
2answers
46 views

STS:Class 'org.springframework.jdbc.datasource.DriverManagerDataSource' not found

i am new to spring java Here is the Code: pom.xml file <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" ...
0
votes
1answer
70 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 : ...
0
votes
0answers
43 views

How to configure OpenJpa with H2 database in Spring MVC

I've a Maven Spring MVC-webapp project and I want to use OpenJpa to manage my data. I'm completely new to Jpa and I found no examples in internet on how to configure OpenJpa; I understood that I've to ...
0
votes
0answers
20 views

Scaling Spring on Heroku

I was wondering if someone could point me to a good tutorial or blog post on writing a spring application that can be all run in a single process for integration testing locally but when deployed will ...
0
votes
0answers
33 views

How to explain the different behaviour of spring in eclipse and standalone application

We have a web application using spring framework which works well. We try to use the same spring context in a standalone application built with maven. We managed to get the context by launching the ...
0
votes
0answers
39 views

Logback with Spring MVC doesn't work [duplicate]

I developed a webapp with Spring MVC and build it with maven. I want to improve logging using logback sl4j logging framework, but I'm completely new to it. I modifide my pom.xml this way: <!-- ...
0
votes
2answers
100 views

Logback logging not working

I've a Spring MVC simple addressbook project build with maven. I want to use Logback for logging, but I'm completely new to it; first I changed my pom.xml this way: <!-- Spring 3 dependencies ...
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 ...
0
votes
0answers
21 views

Connect to database during Maven build with Exec Plugin

I am using the Exec Maven Plugin to run a main method when using a specific profile. For example: mvn process-resources -Psomeprofile In this method, I want to be able to run code that performs ...
0
votes
1answer
53 views

spring version set to 3.2.1.RELEASE in pom but different jar in project

In the pom file of a java project I have the spring dependencies set to version 3.2.1.RELEASE but when I run a mvn dependency:tree I get different versions for some of the dependencies: ...
1
vote
1answer
48 views

How to use pom properties in spring context.xml?

I have pom file(pom.xml): ... <properties> <certificate-manager.default-client-certDN>Default Client</certificate-manager.default-client-certDN> ...
0
votes
1answer
74 views

maven-scala-spring-jetty servlet not initialized

I want to create a maven scala spring hibernate project using ECLIPSE. Im following this tutorial : http://grahamhackingscala.blogspot.fr/2010/01/scala-spring-hibernate-maven-webapp-how.html Now I'm ...
0
votes
0answers
39 views

How do I use Maven to do artifact generation and application.properties of different testing regions/locations for Spring configed app

I want to use Maven to handle artifact generation for the different local and testing regions. I believe I can use different profiles in Maven to select different directories to select files used on ...
0
votes
3answers
55 views

strange thing about eclipse and maven, and eclipse's auto build

I use STS and it's a spring web project. when i run maven build manually, shows: SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder". but this project still can auto build and deploy to ...
0
votes
3answers
84 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
1answer
100 views

java.lang.IllegalAccessError: class javax.xml.parsers.SecuritySupport12 cannot access its superclass javax.xml.parsers.SecuritySupport

I am using spring+maven. I am deploying my application in tomcat server. All of a sudden when I try to run my application I am geeting the following error. INFO: Starting Servlet Engine: Apache ...
0
votes
2answers
189 views

Failed to execute goal org.codehaus.mojo:tomcat-maven-plugin:1.1:deploy (default-cli)

i am trying to do mvn tomcat:deploy and i came across with the error [ERROR] Failed to execute goal org.codehaus.mojo:tomcat-maven-plugin:1.1:deploy (default-cli) on project appanalytix: Cannot ...
0
votes
1answer
233 views

SPRING MVC 3.2.2 + SPRING SECURITY 3.1.3 INCOMPATIBILITY java.lang.IncompatibleClassChangeError

I have changed the version of spring security in my application from 3.2.0.M1 to 3.1.3 but I have an error when Tomcat launches my application. The first row of the exception stack is the following: ...
0
votes
2answers
39 views

Incorrect file path being used within submodule

A multi-module project which works for my colleagues fails for me. The problem arises during any test which references a file and in the spring configuration files when they reference a file. The ...
0
votes
1answer
117 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
2answers
27 views

what to exclude for spring jax-ws in maven

I have been developing a Spring Web application. I need to add a web service functionality to the application. I am using Maven for dependencies and so far I am very content. I will use Jax-WS for ...
-4
votes
0answers
67 views

Command line error in Maven project with spring framework

Junit is running fine but the import statements in the class file are not responding in the command line and here is the trace: Exception in thread "main" java.lang.NoClassDefFoundError: ...
0
votes
0answers
66 views

Embedded database configuration from Maven/Spring context

I want to use the same embedded database from both maven and spring context. Via Maven Liquibase plugin I'm creating db schema and populate it with data. Via Spring I'm going to work with the ...
0
votes
0answers
41 views

Locating NamescpaeHandler for Spring Integration XSD (Schema)

Do you know what dependency will satisfy the inability to locate the Spring Namespacehandler for the Spring Integration schema? I am working on a Spring Integration POC in the Spring Tool Suite and I ...
0
votes
1answer
21 views

Maven resource filtering - Spring application

I'm just wondering, at what point does the Maven resource filtering mechanism inject values from a profile into a target file? I'm asking because my application is using Spring, and depending on a JVM ...
0
votes
0answers
73 views

Need help configuring MongoDB on Spring/Maven

When I code in Spring, I always use annotations, and always get stuck when it comes to xml based configuration. Right now, I'm stuck at a problem which is probably a very simple thing. I'd appreciate ...
0
votes
1answer
87 views

Unable to locate Spring NamespaceHandler for XML schema namespace [http://www.springframework.org/schema/data/mongo]

I'm trying to build a sample Spring+MongoDB skeleton, and I'm getting the below runtime error. SEVERE: Context initialization failed ...
1
vote
1answer
59 views

Jetty and tomcat doesn't load implementation of AbstractAnnotationConfigDispatcherServletInitializer

I have Spring 3.2 application with a pure java based configuration. When I start the application with "mvn jetty:run" everything works fine. But when I deploy a war file in Jetty(9.0.2) or Tomcat(7.0) ...
0
votes
2answers
59 views

How to exclude resources from my maven build, packagingExcludes not working

I am using the maven-war-plugin to build a .war file I am using packagigExcludes and it is working fine for .jar files: <packagingExcludes>WEB-INF/lib/jetty-*.ja ...
1
vote
0answers
153 views

Failed to start component [StandardEngine[Catalina].StandardHost[localhost].StandardContext[]] issue with Tomcat

I am working on a Java application with Apache Maven, Tomcat and Spring in the IntelliJ IDE. I have the following problem that is taking me the entire day. Does anyone where the problem may be? Thanks ...
0
votes
2answers
66 views

Using maven to create a .war file, how can I use my production resources?

I use this to build my spring mvc app: mvn clean package I use the maven war plugin to create a war file, but the problem I am facing is that in my resources folder I have my development versions ...

1 2 3 4 5 16