For this tutorial, I will be using the workspace created in my tutorial RESTful Web Service with Spring 3.1. So I suggest you to read RESTful Web Service with Spring 3.1, before start reading this tutorial. In JAX-RS, you can use @RequestParam annotation to inject URI query parameter into Java...
A Technology Blog About Code Development, Architecture, Operating System, Hardware, Tips and Tutorials for Developers.
Tuesday, December 25, 2012
@PathParam - JAX-RS
For this tutorial, I will be using the workspace created in my tutorial RESTful Web Service with Spring 3.1. So I suggest you to read RESTful Web Service with Spring 3.1, before start reading this tutorial. In JAX-RS, you can use @PathParam to inject the value of URI parameter that defined in...
@Path - JAX-RS
For this tutorial, I will be using the workspace created in my tutorial RESTful Web Service with Spring 3.1. So I suggest you to read RESTful Web Service with Spring 3.1, before start reading this tutorial. In JAX-RS, you can use @Path to bind URI pattern to a Java method and in this tutorial...
Thursday, December 20, 2012
List and Set implementations are not marshalled with JAXB?
Snap of code what I was doing:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
@XmlRootElement
public class FooBar {
public String title;
public FooBar(String t) {
this.title = t;
}
}
@XmlRootElement
@XmlSeeAlso({FooBar.class})
public class FooBarSet extends ArrayList<FooBar> {
public...
Wednesday, December 19, 2012
Architecture of a Modern Web Application
9:43:00 PM
Posted by Satish
AJAX, ARCHITECHURE, CLOUD, CSS3, DESIGN, HTML5, J2EE, JAVA, JAVASCRIPT, OPEN SOURCE, PERFORMANCE
32 comments
Some time in my career, I was working in a RFID tracking system and I was designing the real time event notification web application for that, I was using Google Map API to show the activities on a particular facility/ floor map, where RFID sensors were mounted. I tried lot of techniques and APIs and...
Saturday, December 15, 2012
RESTful Web Service with Spring 3.1
8:22:00 PM
Posted by Satish
J2EE, JACKSON, JAVA, JAX-RS, JERSEY, MAVEN, REST, SPRING, TUTORIALS, WEB SERVICE
9 comments
I posted lot of tutorials to create RESTful web services using different APIs like JAX-RS With GlassFish Jersey, JAX-RS With Jboss RESTEasy and JAX-RS With Apache CXF. I also posted the tutorials for Spring integration in Spring And Jersey, Spring and RESTEasy and Spring And CXF. But when...