Tagged Questions
1
vote
1answer
11 views
Annotations and SimpleFormController
help me pls I used in my project .xml and simpleformcontroller then i added <mvc:annotation-driven> and controller which using @requestmapping, now controller with request mapping works fine, ...
0
votes
1answer
21 views
Spring Multi Action Controller
I am trying to get a multi action controller working so I can use it for navigation purposes, I have one working already which handles json and they are in the same config file and the json mappings ...
0
votes
1answer
17 views
Spring config XML file with context/jdbc/tx schemalocation
I want to use spring autowired with conjunction of jdbc for initial derby data, and jpa.
Currently I try such a config file:
<beans xmlns="http://www.springframework.org/schema/beans"
...
1
vote
0answers
28 views
XML namespace extension causes NAMESPACE_ERR in SOAP envelope
I have a SOAP envelope into which I am adding a response payload. I have define the namespaces:
xmlns="http://custom.nsendpoint.com/1.1"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
in ...
0
votes
1answer
53 views
Load properties file in spring in order
Is there any way to load a properties file in spring in order ? I understand Properties is a Hashtable and maps are unordered. I would like a xml based solution rather than a java based solution. ...
-2
votes
1answer
37 views
How to put two param-values in one context-param in Spring?
Problem: I have two contextConfigLocation parameters, one with @Configuration classes for spring-social-facebook and one with xml-file for app:
<context-param>
...
0
votes
1answer
24 views
Apache Camel, Client Certificates
I'm trying to find an elegant way to attach client certificates through Apache Camel. It can either be in Java or Spring XML.
The servers I'm sending to all have server cert's which would encrypt the ...
2
votes
1answer
63 views
SOAP Body with Two Elements
I am trying to create a soap message with the following structure:
<SOAP:Envelope>
<SOAP:Header/>
<SOAP:Body>
<Item1/>
<Item2/>
...
0
votes
0answers
13 views
How to set a Spring component based on a execution enviroment using the configuration plan in SOA Suite 11g?
I have a need to configure a specific smtp server based on the execution environment, but i can't find a way to use the config plan to customize the properties within the applicationContext.xml file ...
1
vote
1answer
115 views
Can't rename XML & Json Root Element in Spring 3.2.2, Jackson 2.2 and Xstream
Please help me to understand what is going on with name of XML&Json root element in Spring
in JSon I get
{"addressList":
[{"StreetName":"Boul. Rene-Levesque ...
0
votes
1answer
55 views
Spring/Mule schema issue
I am experiencing the following exception when launching my mule application:
SEVERE: Line 6 in XML document from mule-spring-config.xml is invalid; nested exception is org.xml.sax.SAXParseException; ...
0
votes
0answers
39 views
update XML file in a page Jsp
I use spring security and i have many roles in my database for example ROLE_ADMIN and ROLE_USER so in my xml file named "spring-security.xml" i defin for each page wich role can see it :
<http ...
2
votes
1answer
80 views
Ignoring root element using JAXB
I am using Spring and it's REST template to bind XML from a webservice to a domain object using JAXB. The XML returned from the web service is as follows:
<response>
<user>
...
1
vote
1answer
36 views
Spring Batch : Database to XML issue
I have a simple spring batch program, which reads from a database table and forms an output XML using default XStreamMarshaller writer class below
org.springframework.oxm.xstream.XStreamMarshaller
...
10
votes
2answers
157 views
Rewrite options in Context.xml file using Spring
I have Spring configuration in my project. In that context.xml is dynamically rewritten by me in Java. My question is, why the beans namespace URL is not coming after the file is rewritten?
My ...
0
votes
1answer
44 views
Why is ControllerClassNameHandlerMapping needed
I thought ControllerClassNameHandlerMapping was for mapping a url to a controller (after removing the Controller portion) but this doesnt seem to be the case with my example.
If I remove the ...
0
votes
1answer
77 views
I/O failure during classpath scanning in spring MVC
Hi I am new to Spring and I am trying to do a simple spring mvc application which accepts values from customer form and displays the same in the same in the UI. Now the problem is when I try to ...
0
votes
1answer
27 views
<import/> statements in Spring MVC
If I have a statement in my servlet.xml like this:
<import resource="classes/com/au/curtin/example.xml/>
and an example.xml at that directory location that has Spring bean definitions as ...
2
votes
1answer
46 views
xsd -xml regex validation not working for me using JAXB
I have written a simple XSD where I have written following XSD pattern
<xsd:element name="xx">
<xsd:simpleType >
<xsd:restriction base="xsd:string">
<xsd:pattern
...
5
votes
3answers
160 views
How to configure Spring Controller and/or JAXB to help prevent SQL / XSS injection
I have a Controller in Spring with a method like the following
@RequestMapping(value = "/v1/something", method = RequestMethod.POST, headers = "content-type=application/xml")
@Valid
public void ...
0
votes
2answers
45 views
spring 3: inject a dependency from a library?
I am developing a project and using 3rd party libraries. Let's say I use a library which gives me the object ExtObj. In my project I have a class MyObj, which uses ExtObj. How can I configure spring 3 ...
0
votes
1answer
56 views
STS/Eclipse Loading Wrong Spring Beans XSD
Spring Tool Suite (3.1.0)/Eclipse is loading the wrong version of a Spring Beans XSD, causing XML validation errors. I've got spring-beans 3.2.2.RELEASE on the classpath as a Maven dependency, and so ...
0
votes
1answer
113 views
How to add child element in soap header in java
How to add child element in soap header in java spring webservice.
I have tried two approach but nothing is working please suggest me what need to be done?
first approach :-
...
0
votes
0answers
26 views
Error Incomprehensible in Xml file Multiple Anontations
I get this error with my project in Eclipse into my XML files :
Multiple annotations found at this line:
- cvc-elt.1: Cannot find the declaration of element 'beans'.
- schema_reference.4: ...
1
vote
1answer
31 views
how to validate xml via xsd in java depending on value of an xml element
I am using Jaxb2Marshaller and using ValidationEventHandler-handleEvent(). i am storing any error message occurred in the process in a map. I am using xsd to validate mandatory/optional tags. So the ...
0
votes
1answer
227 views
Spring JPA + Hibernate XML Configuration
Recently, I started to learn Spring JPA and I get confused on setup the Spring JPA in xml configuration.
I googled the spring documentation site, and not much I can get from there. I googled some ...
0
votes
0answers
59 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
46 views
how to import spring xml outside of a jar
I have a spring xml importing another spring xml. Now I want to make it more flexible by putting the second xml outside of the jar.
I am wondering to do do this??
<import ...
1
vote
1answer
104 views
Spring interceptor works with xml but not with config class
Im currently using an interceptor configured with xml like this :
<mvc:interceptors>
<bean class="org.resthub.dashboard.BasicInterceptor" />
</mvc:interceptors>
But I would ...
1
vote
0answers
76 views
Spring Security XML can't find tag with error cvc-complex-type.2.4.c
I have a problem with Spring Security.
Eclipse can't find the html tag in the spring-security.xml with this error :
Caused by: org.xml.sax.SAXParseException; lineNumber: 12; columnNumber: 28; ...
2
votes
0answers
112 views
SpringSocial XML Configuration Schema Error
I tried the Spring Social Showcase using XML but it appears to have an error in the XML.
The XML file is not working. I have read x marks on line 23 to 27.
<facebook:config ...
1
vote
2answers
47 views
What is the difference? Specifying a file in context-param vs using import?
Spring and Hibernate stack.
I see that we can specify multiple files in web.xml file under <context-param> tag.
<context-param>
<param-name>contextConfigLocation</param-name>
...
2
votes
2answers
101 views
Mapping XML Entities to Java Objects
I am quite sure, this is one of the many duplicated questions around XML to Java Object conversions.
But I started this thread since I couldn't find simpler or looking for simpler solution.
I have an ...
0
votes
0answers
750 views
Spring-Security Error (Error creating bean with name 'org.springframework.security.filterChainProxy')
I'm trying to set up basic spring-security using 3.1.4 RELEASE.
My spring security xml. (I added the alias to the authentication manager due to a previous error but most examples I see online don't ...
0
votes
1answer
53 views
Grab namespace prefix from request and find element with it in Spring Java
I want to get rid of the static "ims:" and use the prefix found in the SOAP request with the namespace xmlns:ims="http://www.imsglobal.org/services/lis/bdems1p0/wsdl11/sync/imsbdems_v1p0. How can I ...
0
votes
0answers
346 views
Deploy War fail due to “Failed to define class org.springframework.beans.BeansException ”
I'm trying to deploy a WAR application integrating with BlazeDS, when I try to add security the following errors occur
10:14:55,483 WARN [org.jboss.modules] (MSC service thread 1-1) Failed to define ...
0
votes
1answer
84 views
Situations to use Annotations Vs XML configuration in Spring?
Sorry to ask this question which may be already asked in Stack Overflow for different situation.
I searched a lot in Stack overflow and google . But couldn't find a reliable and a well suitable ...
0
votes
1answer
514 views
Spring 3.1 integration with JBoss 7.1 Class Not Found errors
I have a single war project in which I am integrating BlazeDS with JBoss 7.1. I can deploy my war file normally but when I try to add security I get the following stack trace
13:23:37,222 INFO ...
0
votes
1answer
41 views
Spring configuration files: package imports or names in attribute values
All the examples I've seen so far about Spring configuration have
<bean class = "org.example.complex.package.path.FooClass" >
I wonder if this can be simplified through a mechanism similar to ...
1
vote
0answers
73 views
Spring and XML responce
I have a problem with Spring MVC and XML Response via @ResponseBody.
Here is my web.xml:
<web-app xmlns="http://java.sun.com/xml/ns/javaee"
...
1
vote
1answer
79 views
Using/converting an XML file to a Spring bean definition
I have defined a Spring application context xml which will be edited by end users to add new beans.Something like:
<bean name="myBeanName1" class="com.xxx.Yyy">
<property name="type" ...
0
votes
0answers
35 views
Spring Security 3 xml file
Please let me know what is the maximum size of Spring Security xml file with which I can run my application. Just wanted to know this because if an end user keeps on adding n number of intercept-url ...
0
votes
0answers
36 views
RE:How to configure org.springmodules.validation.bean.BeanValidator to not use AnnotationBeanValidationConfigurationLoader
Is there a way to bind the modal/POJO to a specific spring validator in spring config xml.
I don't want to use @Validator annotation/validator reference in the POJO as it is shared across multiple ...
1
vote
0answers
117 views
spring parent child context relationship for beans in certain namespace
I want to create child spring context in which i could define bean which are good to aave. exmaple i have a jdbc datasource which is good to have but it could not be initilized i dont want the who ...
0
votes
2answers
54 views
Which Spring extension mechanism should I use?
Lets say I have a set of bean (a,b,c) implementing one interface and a map.
M.xml
<bean name="map" class="java.util.HashMap"/>
abc.xml
<import M.xml>
<bean name="a" ...
0
votes
1answer
28 views
How can i add a sub Tag to an Xml file already defined using Java?
I have an XML file that contains the configration of a Spring project and I want to dynamically add a new bean. I have to modify the initial xML file and add my new bean definition:
<?xml ...
0
votes
1answer
379 views
json response is not returned using spring 3.1
I am trying to return json and xml response using ResponseBody, and it does work fine for xml but doesnt return json. My request uri for xml is '../home.xml' and for json is '../home.json' from ...
0
votes
1answer
32 views
Hexadecimal literals in Spring XML configuration
How can I use hexadecimal literals in Spring XML configuration file?
<value>#{T(java.lang.Integer).decode("0xFF")}</value>
works, but I am too lazy to write such expressions for every ...
0
votes
2answers
173 views
Dynamic dependency injection in spring configuration file
I need to know how to inject a dependency dynamically in spring configuration file. For an example I have a business logic class called 'Class A'. Inside that class, it handle a method called ...
0
votes
1answer
147 views
Spring, Hibernate and .xml Error
ERROR
[INFO] [Launcher:/hibernate] org.springframework.beans.factory.support.DefaultListableBeanFactory - Destroying singletons in ...

