Results 1 to 5 of 5

Thread: Where to post issues with Green Beans tutorials?

  1. #1
    Join Date
    Mar 2010
    Posts
    6

    Default Where to post issues with Green Beans tutorials?

    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?

  2. #2
    Join Date
    Aug 2012
    Posts
    21

    Default

    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.

  3. #3
    Join Date
    Mar 2010
    Posts
    6

    Default

    Here's one. In http://blog.springsource.org/2011/01...th-spring-mvc/, the Comparator implementation is:

    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);
        }
    }
    The import should be org.springframework.stereotype.Service, not Component.

  4. #4
    Join Date
    Aug 2012
    Posts
    21

    Default

    ok thanks. I'm checking into getting the post updated. thank you!!!

  5. #5
    Join Date
    Aug 2012
    Posts
    21

    Default

    fixed. thank you!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •