there are space characters 160 (non breaking space character) and 32 (space) - these represent a space characters but are distinct different individual characters,
is there any library that can be used to convert 160 (non breaking space character) into 32 (space) characters - this is for string comparison purposes,
what i am trying to do is to read multiple (100) files into a Map in parallel rather than reading one file at a time,
I have read that there may be restrictions to this due to I/O processing but is there a way to use ExecutorService and Threads to run multiple threads in parallel and load the contents of the files into a map contained of DTO's,
I am using Spring Batch to export XML content in a Database table to a single XML file,
The Spring Batch has a reader to read the data from the database and a FlatFileWriter to write xml database field content data to a xml file,
But at the top of the exported XML file needs to be the number of items in the XML file,
I am thinking of using XSLT and xPath for this but is there any good way for doing this within Spring Batch?
i have a java enum Country with fields shortName and longName but i want to move the enum to a static database table,
What is the best way to achieve this?
when i build a snapshot library for my project, the name of the jar and pom files are:
<projectName>-1.0.0-20130516.102259-1.jar
<projectName>-1.0.0-20130516.102259-1.pom
But how can i set the snapshot version to be:
<projectName>-1.0.0-SNAPSHOT.jar
<projectName>-1.0.0-SNAPSHOT.pom
i have the code working now with queryByExample but is there a way to pass in an object into the qbe and to do both LIKE and case insensitive in the query?
i have a web application that consists of flows and sub-flows,
is there any documentation on how to implement exception handling in a web application when if an exception is thrown then a particular page is displayed,