Java Feature —
Concurrent Programming
and Locking in J2SE 5.0
In concurrent
programming, exclusion
refers to any technique
that dynamically locks
certain blocks of code so
multiple threads can't
corrupt their shared
resources in ways that
can cause integrity
problems. In Java,
exclusion has meant using
the synchronized keywo...Apr. 21, 2006 02:00 PM Reads: 23,403 Replies: 2


HTML forms are one of the
best-known techniques for
gathering data from a
user and submitting that
data to a server.
However, HTML forms are
only simple tools and
don't natively support
some of the features
needed by current Web
applications such as
sophisticated ...