Tagged Questions
XStream is a simple library to serialize objects to XML and back again.
9
votes
3answers
4k views
How to disable pretty-printing(white space/newline) in XStream?
This is how I create XStream instance for XML:
XStream xstream = new XStream();
This is for JSON:
private final XStream xstream = new XStream(new JsonHierarchicalStreamDriver() {
public ...
8
votes
5answers
600 views
Modern alternative to Java XStream library?
I used XStream many years ago, but I see that the libraries is not updated since 2008 (latest news). Is there now a more modern and up to dates Java XML serialization library?
8
votes
4answers
2k views
XStream : node with attributes and text node?
I would like to serialize an object to an XML of this form with XStream.
<node att="value">text</node>
The value of the node (text) is a field on the serialized object, as well as the ...
7
votes
2answers
339 views
Is there a way to put a version number in XML generated by XStream?
I serialize my domainObjects using XStream.
I would like to add some kind of versioning information to a generated xml file just in case my domain model changes.
Is there a way to do it using ...
5
votes
1answer
257 views
Problem with deserialization of String sent over wire with XStream
I am trying to create a simple webservice which takes a String as input and returns string as output.
I am using Ecelipse Helios and Axis 2.15.
I am writing simple WSDL for the same.
I am generating ...
5
votes
1answer
958 views
How to attach a XStream converter just for a certain element?
It is easy to set a converter for a certain type (http://xstream.codehaus.org/javadoc/com/thoughtworks/xstream/XStream.html gives an example):
xstream.registerConverter(new SqlTimestampConverter());
...
5
votes
1answer
219 views
How do I use xStream to output Java Objects with List properties?
I am trying to output some Java objects as JSON, they have List properties which I want to be formatted as { "People" : [ { "Name" : "Bob" } , { "Name" : "Jim" } ] }
However, I cannot figure out how ...
5
votes
2answers
2k views
XStream parse attributes and values at the same time
I have the following XML
<search ver="3.0">
<loc id="ARBA0009" type="1">Buenos Aires, Argentina</loc>
<loc id="BRXX1283" type="1">Buenos Aires, Brazil</loc>
...
5
votes
7answers
2k views
XStream or Simple
I need to decide on which one to use. My case is pretty simple. I need to convert a simple POJO/Bean to XML, and then back. Nothing special.
One thing I am looking for is it should include the ...
5
votes
3answers
5k views
how to create an InputStream from a Document or Node
How can I create an InputStream object from a XML Document or Node object to be used in xstream? I need to replace the ??? with some meaningful code. Thanks.
Document doc = getDocument();
...
5
votes
4answers
2k views
What is the best Java-way to create JSON/XML REST Web services that is similar to WCF?
I'm looking for a best way that is available for Java developers to implement REST services that will be communicating via JSON or XML. I'm looking for production-ready products.
I know that Spring ...
5
votes
7answers
5k views
What are the relative advantages of XMLEncoder and XStream?
Suppose I want to store many small configuration objects in XML, and I don't care too much about the format. The XMLDecoder class built into the JDK would work, and from what I hear, XStream works in ...
4
votes
2answers
189 views
Convert Attributes to Tag in java [closed]
Possible Duplicate:
Convert all node's attributes into child nodes
I would like to convert xml attributes to tag. for e.g. Using XStream
<root>
<abc attr1="aaa" ...
4
votes
2answers
868 views
How can I disable unnecessary escaping in XStream?
XStream by default unnecessarily escapes >," ... etc.
Is there a way to disable this (and only escape <, &)?
4
votes
2answers
867 views
XStream: Collapsing XML hierarchy as I parse
I have an XML document (generated by Adobe XFA forms), that contains data like the following:
<Position>
<PositionBorder>
<Title/>
<StartDate/>
...
4
votes
6answers
3k views
customising serialisation of java collections using xstream
I have an object that needs to be serialised as XML, which contains the following field:
List<String> tags = new List<String>();
XStream serialises it just fine (after some aliases) ...
4
votes
3answers
8k views
In XStream is there a better way to marshall/unmarshall List<Object>'s in JSON and Java
I'm using XStream and JETTISON's Stax JSON serializer to send/receive messages to/from JSON javascripts clients and Java web applications.
I want to be able to create a list of objects to send to the ...
4
votes
3answers
793 views
Serialise to YAML using XStream in Java
Is there a YAML driver for the Java XStream package?
I'm already using XStream to serialise/deserialise both XML and JSON. I'd like to be able to do the same with YAML.
4
votes
5answers
2k views
Issue with serializing Hibernate objects using XStream
I've been facing this issue where, the hibernate objects on serialization produces unexpect xmls containing all the instrumented code from Hibernate.
We did some cleaning of the object before ...
3
votes
3answers
73 views
C# XML Serialization - weakening encapsulation?
Am I correct in thinking that, in order to get C# to serialize an object, I MUST have a public property for every field that needs its state stored?
If so, is that not very very sucky, as it weakens ...
3
votes
1answer
268 views
How to make XStream skip unmapped tags when parsing XML?
I have a large XML document that I want to convert to a Java bean. It has a lot of tags and attributes, but I'm interested only in a handful of those. Unfurtounately, it seems that XStream force you ...
3
votes
5answers
9k views
Spring REST 3 to Support XML and JSON
If we develop REST using Spring MVC, it will support XML and JSON data. I have wrote ContentNegotiationViewResorver in my spring config bean app-servlet.xml
<bean
...
3
votes
2answers
247 views
Can XStream be configured to have bi-drectional (parent/child) references?
I'm using XStream to load a file structured like this:
<parent>
<child/>
<child/>
</parent>
Into a class like this:
public class Parent(){
private List<Child> ...
3
votes
3answers
367 views
Serializing Java objects to XML with XStream
The problem is that every time I execute the main method, the old content of a.xml is lost and is substituted with a new one. How to append content to the a.xml file without losing the previous ...
3
votes
2answers
885 views
XStream JavaBeanConverter not serializing properties
Attempting to use XStream's JavaBeanConverter and running into an issue. Most likely I'm missng something simple, or not understanding XStream's converter handling well enough.
@XStreamAlias("test")
...
3
votes
3answers
2k views
XStream: How do I map xml mixed attributes and elements to POJOs?
This must be a newbie question, but I could not get it from http://xstream.codehaus.org.
Well, I have the following xml string
<cat age="4" >
<name>Garfield</name>
</cat>
...
3
votes
2answers
4k views
How do I encode UTF-8 using the XStream framework?
Per XStream's FAQ its default parser does not preserve UTF-8 document encoding, and one must provide their own encoder. How does one do this?
Thanks!
2
votes
2answers
36 views
Storing List<String> with XStream with defined names
I want to store some class to xml:
XStream xstream = new XStream(new DomDriver());
List<String> modules = new ArrayList<String>();
modules.add("mod1");
...
2
votes
2answers
66 views
JAXB or Xstream on a Jersey Restful application
I want to know which solution is better for a Jersey Rest Web service. In some cases JAXB is not abble to handle some types. Is it better to use XStream?
2
votes
3answers
79 views
Java Parser XML example
enter code hereI've to deserialize this XML:
<rows profile="color">
<head>
<columns>
<column width="0" align="left" type="ro" sort="str" ...
2
votes
1answer
126 views
XStream - unmarshalling - Type specified in XML not visible
I have some XML files stored by XStream a while ago, and they include references to RandomAccessSubList, a class which is not visible beyond the package level and has no default constructor so XStream ...
2
votes
1answer
41 views
How to get hold of the (un)marshalled message for logging
I have a Spring MVC REST service that uses XStream to convert the messages to and from XML.
Is there any way I can print the xml (ie the body) from the request and response to a normal log4j logger?
...
2
votes
2answers
67 views
Performance of Oracle xpath: two select scenarios
I am using oracle 11g and have a table with an XMLType. There are many records in this table and each XML contains a list of 0 to n answers as follows:
<section>
<answer id="100">
...
2
votes
2answers
106 views
XStream: Keep parts of the XML as XML
I have the following XML:
<patient>
<name>Mr. Sick</name>
<report>
<paragraph><bold>Conclusion</bold>text...</paragraph>
...
2
votes
1answer
300 views
How to Marshall using JAXB (or XStream) to update an XML file without writing the whole file
Just as an example, lets say I have a customerX.xml file that I've unmarshalled using JAXB (or XStream) already.
I update phone number of this customer in my Java object and then marshal the content ...
2
votes
1answer
150 views
binding xml value as either attribute or element
Spring framework's xml syntax is somewhat flexible. It allows you to define some information either as attribute or as a nested element. E.g.,
<property name="accountDao" ref="accountDao"/>
...
2
votes
2answers
136 views
Formatting decimal values for XML
I have a problem currently where a system we are connecting to expects to receive XML which contains, among other things, three double fields formatted to one decimal place. Personally I feel that our ...
2
votes
1answer
416 views
Spring RestTemplate and XMLStream use with List of Objects
I am trying to use Spring RestTemplate to retrieve a List of Employee records, such as:
public List getEmployeesByFirstName(String firstName) {
return restTemplate.getForObject(employeeServiceUrl + ...
2
votes
1answer
261 views
Intercepting Xstream while parsing XML
Suppose I have a simple Java class like this:
public class User {
String firstName;
String lastName;
public String getFirstName() {
return firstName;
}
public void ...
2
votes
2answers
1k views
BeanUtils.copyProperties ignoring null values
I have the following class:
import org.apache.commons.beanutils.BeanUtils;
import com.thoughtworks.xstream.XStream;
...
public class MyBean {
protected static final XStream XSTREAM = new ...
2
votes
1answer
227 views
Load xml with clojure with XStream
I am trying to load xml file using XStream api with clojure. This process don't works and i don't know what's happening.
I have a type defined in the namespace:
(ns myapp.domain.foo)
(defrecord Foo ...
2
votes
2answers
3k views
How to convert List of Object to XML doc using XStream
How to convert List of Object to XML doc using XStream ?
and how to deserialize it back ?
This is my xml
<?xml version="1.0" encoding="UTF-8"?>
<persons>
<person>
...
2
votes
3answers
2k views
XStream Alias of List root elements
I want to be able to alias the root list element depending upon what type of objects are contained in the list. For example, this is my current output:
<list>
<coin>Gold</coin>
...
2
votes
2answers
979 views
XStream: how to marshal/unmarshal lists in a custom converter?
I have the following class (legacy; not annotatable) that is serialized with a custom converter:
class Test {
// some other variables
List<SomeType> someTypeList;
}
A properly ...
2
votes
1answer
573 views
Optimize loading speed of xstream
I felt xstream loading speed doesn't up to my requirement when I try to perform loading from the XML file. For
an "database" with 10k ++ entries, it will take several minutes.
The following is the ...
2
votes
1answer
2k views
XStream - Root as a collection of objects
I'm consuming an XML payload that looks something like this (for a more comprehensive example, check out : http://api.shopify.com/product.html ).
<products type="array">
<product>
...
2
votes
2answers
506 views
using RESTlet, XStream annotations seem to have no effect
Using @XStreamOmitField in my POJO seems to have no effect whatsoever. the annotated field still gets exposed in the xml or json representation.
@XStreamAlias("Pojo")
@Entity
public class Pojo {
...
2
votes
2answers
478 views
How can I use JAXB from an unsigned applet (without signing it)?
I would like to marshall Java objects into XML and vice-versa from within an Unsigned Applet and I can't change any of the security permission/policy files, or sign the application.
I seem to get a ...
2
votes
1answer
628 views
Default value from DTD in xStream
Geven XML file
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE ExternalRequestContext [
<!ELEMENT ExternalRequestContext EMPTY>
<!ATTLIST ExternalRequestContext
requestType CDATA ...
2
votes
2answers
726 views
How can I get XStream to output Scala lists nicely? Can I write a custom converter?
This code:
println(new XStream.toXML(List(1,2,3)))
produces this XML:
<scala.coloncolon serialization="custom">
<unserializable-parents/>
<scala.coloncolon>
...