[pool][dbcp][scxml] Apachecon, North America April 7-9

2014-03-05 Thread Phil Steitz
I will be presenting on the newly-released 2.x versions of Commons
Pool and DBCP next month at Apachecon, North America in Denver [1].

Ate Douma is also giving a talk on [scxml].

Come join us!

Register soon, as prices go up on March 14th.

Phil

[1] http://na.apachecon.com/.


-
To unsubscribe, e-mail: user-unsubscr...@commons.apache.org
For additional commands, e-mail: user-h...@commons.apache.org



Fw: Logging/NoSQL Track at ApacheCon Denver

2014-03-05 Thread Melissa Warnkin
For the Logging and NoSQL Enthusiasts, 

As you are no doubt aware, ApacheCon North America will be held in Denver, 
Colorado starting on April 7th.  The Logging and NoSQL track have 6 talks; 
check it out here:  
http://apacheconnorthamerica2014.sched.org/overview/type/logging-nosql#.UxcbyoV9JUE

We would love to see you in Denver next month.  Register soon, as prices go up 
on March 14th. http://na.apachecon.com/.

Best regards,

Melissa
ApacheCon Planning Team

[ANNOUNCE] Apache Commons Lang 3.3 released!

2014-03-05 Thread Benedikt Ritter
The Apache Commons Team is pleased to announce the release of Apache
Commons Lang 3.3.

The Apache Commons Lang open source software library provides a host of
helper utilities for the java.lang API, notably String manipulation
methods, basic numerical methods, object reflection, concurrency, creation
and serialization and System properties. Additionally it contains basic
enhancements to java.util.Date and a series of utilities dedicated to help
with building methods, such as hashCode, toString and equals.

3.3 is fully binary compatible to the last release. No client code changes
are required to migrate from version 3.2.1 to 3.3. Users of version 2.x
should consult the migration guide on the Commons Lang web site. The
minimum required JDK version for this release is 1.6.

Notable new features include:

o LANG-955:  Add methods for removing all invalid characters according to
 XML 1.0 and XML 1.1 in an input string to StringEscapeUtils.
 Thanks to Adam Hooper.
o LANG-637:  There should be a DifferenceBuilder with a
 ReflectionDifferenceBuilder implementation
o LANG-944:  Add the Jaro-Winkler string distance algorithm to StringUtils.
 Thanks to Rekha Joshi.
o LANG-417:  New class ClassPathUtils with methods for turning FQN into
 resource path

Source and binary distributions are available for download from the Apache
Commons download site:
  http://commons.apache.org/proper/commons-lang/download_lang.cgi

When downloading, please verify signatures using the KEYS file available at
the above location when downloading the release.

Alternatively the release can be pulled via maven:
  org.apache.commons
  commons-lang3
  3.3

Full details of all the changes in 3.3 can be found in the changelog:
  http://commons.apache.org/proper/commons-lang/changes-report.html

For complete information on Commons Lang, including instructions on how to
submit bug reports, patches, or suggestions for improvement, see the Apache
Commons Lang website:

http://commons.apache.org/proper/commons-lang/

Benedikt Ritter,
on behalf of the Apache Commons community


-- 
http://people.apache.org/~britter/
http://www.systemoutprintln.de/
http://twitter.com/BenediktRitter
http://github.com/britter


[digester] Multiple paths mapped to one object

2014-03-05 Thread Jan Fröhlich
Hi all,

given an XML with something like


10


14


17



I would like to map all nodes (XTABLE, VTABLE and HTABLE) to one class Table 
and set the properties.
While learning digester I created a class for each tag, but now I want to 
improve that.

For the class itself the following should work
@ObjectCreate.List(value = {
@ObjectCreate(pattern = "*/HTABLE"),
@ObjectCreate(pattern = "*/VTABLE"),
@ObjectCreate(pattern = "*/XTABLE")
})
public class Table {
private String name;
private Long posX;
private Long posY;
private Long rows;

}

But how should I annotate the properties as I have to set the pattern attribute 
to all @SetProperty annotations and the pattern is different for all of them.

Any help appreciated.

Jan