Stéphane Nicoll

Stéphane Nicoll

Stéphane is an experienced software engineer and open source contributor with a strong focus on Java enterprise development, software architecture, and technical leadership. Over the years, he has contributed to and led a wide range of initiatives, including the development of critical infrastructure in logistics and geospatial systems, as well as the design of enterprise frameworks widely adopted across the industry.

Stéphane is a core contributor to the Spring Framework and Spring Boot open source projects, and previously led Spring Initializr and start.spring.io, supporting developers worldwide in getting started with Spring. As a former member of the Apache Maven PMC, he has been actively involved in open source software governance and evolution for two decades.

As a member of the Spring team, Stéphane has had the privilege of working on various aspects of Spring Boot and Spring Framework, with a focus on understanding its inner workings and collaborating with the fantastic community of contributors.

Connect with Stéphane ("snicoll") on Bsky, Mastodon, and GitHub to follow his ongoing journey in the world of Java development.

Recent Blog posts by Stéphane Nicoll

Custom test slice with Spring Boot 1.4

Engineering | August 30, 2016 | ...

Spring Boot 1.4 includes a major overhaul of testing support and one of these features is test slicing. I'd like to take the opportunity in this blog post to further explain what it is and how you can easily create your own slices.

Test slicing is about segmenting the ApplicationContext that is created for your test. Typically, if you want to test a controller using MockMvc, surely you don't want to bother with the data layer. Instead you'd probably want to mock the service that your controller uses and validate that all the web-related interaction works as expected. This can be summarized in…

Spring Boot 1.4.0.RC1 available now

Releases | July 05, 2016 | ...

It is my pleasure to announce that the release candidate of Spring Boot 1.4 is available now from the Spring milestone repository. This milestone concludes 6 months of work in the 1.4 line, closing over 140 issues and pull requests! Thanks to everyone that has contributed.

Highlights of the new release include:

  • Unified @EntityScan for JPA, MongoDB, Neo4j, Couchbase and Cassandra
  • Auto-configured RestTemplateBuilder
  • Support for pure rest client tests via @RestClientTest
  • Support for Jest (Elasticsearch rest client)
  • Upgrades to Spring Integration 4.3, Spring AMQP 1.6, Spring REST Docs 1.1, MongoDB Java Driver 3 and more

Spring Framework 4.3.1 and 4.2.7 available now

Releases | July 04, 2016 | ...

It is my pleasure to announce that the Spring Framework 4.3.1 and 4.2.7 maintenance releases are available now.

The first maintenance release of the 4.3 line contains 40 fixes and improvements and is the base for the upcoming Spring Boot 1.4 release. The master branch has now switched to 5.0 and we'll start merging 5.0 features in preparation for 5.0.0.M1 later this month.

Project Page | GitHub | Issues | Documentation

For more details about Spring Framework 4.3, check Juergen Hoeller's session at SpringOne Platform, which is taking place in Las Vegas between August 1-4 this year. There are many other great talks so check the agenda and get your ticket

Spring Framework 4.3 RC2, 4.2.6 and 3.2.17 available now

Releases | May 06, 2016 | ...

It is my pleasure to announce that the Spring Framework 4.2.6 and 3.2.17 maintenance releases are available now. We also released the second release candidate of the 4.3 line.

4.3 RC2 contains many refinements and fixes, especially in the web framework area. We are about to finalize 4.3 with a scheduled GA in early June. Preparations towards merging 5.0 features into master will happen right afterwards, with a first 5.0 milestone expected in July.

Project Page | GitHub | Issues | Documentation

Couchbase as a First Class Citizen of Spring Boot 1.4

Engineering | April 14, 2016 | ...

This is a cross-post blog from Simon BASLÉ from Couchbase. You can find him on twitter (@simonbasle) or github. Learn more about Couchbase and the Couchbase Java SDK on the developer portal.

Spring Boot 1.4.0 MILESTONE 2 is out! This is a good time to tell you about the joint effort between Spring Boot team members and the Couchbase Java SDK team to offer a first class integration of Couchbase into Spring Boot :)

In Spring Boot 1.4.0, Couchbase becomes a first class citizen of the Spring Boot ecosystem!

Couchbase SDK Integration

Spring Boot now directly recognizes when you have the Couchbase SDK in your classpath. And when that's the case, it instantiates a Cluster and a Bucket bean for you using autoconfiguration

Core container refinements in Spring Framework 4.3

Engineering | March 04, 2016 | ...

Spring Framework 4.3.RC1 is around the corner and brings nice core container refinements which we are going to explore in this post...

Implicit constructor injection for single-constructor scenarios

Consider the following service class:

@Service
public class FooService {

    private final FooRepository repository;

    @Autowired
    public FooService(FooRepository repository) {
        this.repository = repository
    }
}

Quite a common use case but if you forget the @Autowired annotation on the constructor, the container will throw an exception looking for a default constructor, unless you explicitly indicate autowire mode 'constructor' in your bean definition setup (e.g. in an XML <bean>

Get ahead

VMware offers training and certification to turbo-charge your progress.

Learn more

Get support

Tanzu Spring offers support and binaries for OpenJDK™, Spring, and Apache Tomcat® in one simple subscription.

Learn more

Upcoming events

Check out all the upcoming events in the Spring community.

View all