Tag: spring


Different ways to configure spring data in xml conf:

Spring data mongo conf using factory <!-- Spring data mongo conf using factory --> <mongo:mongo id="mongo" replica-set="${mongo.database.url}" /> <mongo:db-factory id="mongoDbFactory" mongo-ref="mongo" dbname="${mongo.database.name}" username="$

Continue Reading

REST with Spring MVC

[underline] Goal Introduction to REST, JSON and Spring MVC. To do so, let’s implement a REST service with Spring MVC. [underline] RESTFul principles Uniform interface Stateless Cacheable Client Server mode Where SOAP services are based on verbs (like methods exposed by an interface) , REST

Continue Reading
Yann's blog