The Java Persistence API - A Simpler Programming Model for Entity Persistence
Connect JBoss and Eclipse
Develop and deploy your first bean
Accessing a JBoss bean from a standalone Java application
REST with Java (JAX-RS) using Jersey - Tutorial
Companion Notes on RESTful Web Services with Java and Jersey
Spring Framework - Chapter 11. Data access using JDBC
How do I write a restful web service that accepts a binary file (pdf)
REST with Java (JAX-RS) using Jersey - Tutorial
RESTful Web Services with Apache Axis2
Developing web services, Part 3: File uploading web service built with Apache CFX
Spring Tutorial,Java Spring Tutorials,Spring 2.5 Beginners Tutorial
Introduction to the Spring Framework
Spring MVC Fast Tutorial (Very good)
How can I read a binary file from a socket input stream which includes textual headers?
Read binary data from a socket
Java Network Programming, 2nd Edition
How do I recognize EOF in Java Sockets?
Creating a simple java web server
BufferedReader in =new BufferedReader(
new InputStreamReader( Connection.getInputStream() ) );
String s=null;
while ( (s=in.readLine()) != null) {
//Read HTTP header
if (s.isEmpty()) break;//No more headers
}
}