InfoQ

InfoQ

Presentation

My Bookmarks

Login or Register to enable bookmarks for unlimited time.

The content has been bookmarked!

There was an error bookmarking this content! Please retry.

Recorded at:
Recorded at

Spring MVC 3.1 Update

Presented by Rossen Stoyanchev on Dec 30, 2011 Length 01:19:41     Download: MP3
     Slides
Sections
Development
Topics
Spring ,
Java ,
Dependency Injection ,
SpringSource ,
Websphere ,
Languages ,
Design Pattern ,
VMWare ,
Patterns ,
Programming ,
Object Oriented Design ,
Application Servers ,
Design ,
IBM ,
SpringOne 2GX 2011 ,
SpringOne ,
Agile in the Enterprise ,
Companies ,
Conferences ,
Agile ,
Spring MVC
 

How would you like to view the presentation?

In case you are having issues watching this video, please follow these simple steps to help us investigate the issue:
1. Right click on the video player and select Copy log
2. Paste the copied information in an email to video-issue@infoq.com (clicking this link will fill in the default details in most email clients).
Note: in case your email client hasn't automatically picked up the email subject, please include in your email the URL of the video too.
3. Done.
We will investigate the issue and get back to you as soon as possible. Thanks for helping us improve our site!
Summary
Rossen Stoyanchev covers some of the new features available in Spring MVC 3.1: URI variable, Redirect & Flash attributes, UriComponentsBuilder, Multipart Request Support, and HDIV Integration.

Bio
Rossen Stoyanchev has worked over the years on various Java Web applications including a set of multi-tenant e-commerce web applications, an investment accounting system, a trading and risk management system, and others. I've helped many to learn or to use Spring more effectively through teaching and consulting. Presently he is a committer on the Spring MVC and the Spring Web Flow projects.

About the conference
SpringOne 2GX is a one-of-a-kind conference for application developers, solution architects, web operations and IT teams who develop business applications, create multi-device aware web applications, design cloud architectures, and manage high performance infrastructure. The sessions are specifically tailored for developers using the hugely popular open source Spring technologies, Groovy & Grails, and Tomcat. Whether you're building and running mission-critical business applications or designing the next killer cloud application, SpringOne 2GX will keep you up to date with the latest enterprise technology.
  • This article is part of a featured topic series on Agile
Default of true for ignoreDefaultModelOnRedirect seems inaccurate by Neale Upstone Posted
  1. Back to top

    Default of true for ignoreDefaultModelOnRedirect seems inaccurate

    by Neale Upstone

    In the presentation, you say that ignoreDefaultModelOnRedirect defaults to true if using @Configuration or <mvc> support, but this doesn't seem to be the case.

    I've had to add this to my config:


    @Bean
    public RequestMappingHandlerAdapter requestMappingHandlerAdapter() {

    RequestMappingHandlerAdapter adapter =
    super.requestMappingHandlerAdapter();

    adapter.setIgnoreDefaultModelOnRedirect(true);
    return adapter;
    };


    Has the default changed since the presentation?

    A bit of searching in the source code seems to imply that it has.</mvc>

Educational Content

Eventually Consistent HTTP with Statebox and Riak

Bob Ippolito explains how to solve concurrent update conflicts with Statebox, an open source library for automatic conflict resolution, running on top of Riak.

Java.next

Erik Onnen attempts to demonstrate that Java is still the best programming language for the JVM if simplified idioms are used along with proper tooling.

Evolution in Data Integration From EII to Big Data

Approaches to integrating data are changing with emergence of cloud computing.

Winning Hearts and Minds: How to Embed UX from Scratch in a Large Organization

Michele Ide-Smith presents the lessons learned in the process of introducing UX principles and techniques into a large organization through a series of small steps.

LMAX Disruptor: 100K TPS at Less than 1ms Latency

Dave Farley and Martin Thompson discuss solutions for doing low-latency high throughput transactions based on the Disruptor concurrency pattern.

Thoughts on Test Automation in Agile

Rajneesh Namta shares his thoughts, experiences, and some of the critical lessons learned while implementing software test automation on a recent Agile project.

Actor Interaction Patterns

Dale Schumacher presents several patterns of actor interaction that can be used in collaborative programs written in any language.

Scalaz: Functional Programming in Scala

Rúnar Bjarnason discusses Scalaz, a Scala library of pure data structures, type classes, highly generalized functions, and concurrency abstractions to perform functional programming in Scala.