We Know the Spring Framework gives singleton, prototype, request, session, global_session bean Scopes.
Also we know that Spring web flow gives flowScope,viewScope,requestScope,flashScope,conversationScope.
So If i mentioned one Component, say Student, as @Component @Scope=singleton in a spring MVC project. For each request, will it create a new Student Object or Spring container will create only once?