I found one minor code problem and some spelling errors in the "Getting Started with Spring MVC" tutorial... I didn't see a Jira bucket for issues of this type. Where should I report these?
I found one minor code problem and some spelling errors in the "Getting Started with Spring MVC" tutorial... I didn't see a Jira bucket for issues of this type. Where should I report these?
here is fine for the moment. When I discover what the right place is, I'll let you know here.
Can you post the link for the document you are referring to?
Is it this?
http://blog.springsource.org/2011/01...th-spring-mvc/
Last edited by phumphrey; Jan 8th, 2013 at 12:29 PM.
Here's one. In http://blog.springsource.org/2011/01...th-spring-mvc/, the Comparator implementation is:
The import should be org.springframework.stereotype.Service, not Component.Code:package xyz.sample.baremvc; import java.util.Comparator; import org.springframework.stereotype.Component; @Service public class CaseInsensitiveComparator implements Comparator<String> { public int compare(String s1, String s2) { assert s1 != null && s2 != null; return String.CASE_INSENSITIVE_ORDER.compare(s1, s2); } }
ok thanks. I'm checking into getting the post updated. thank you!!!
fixed. thank you!