log « MVC Controller « Spring Q&A





1. Logging from SpringMVC controller    stackoverflow.com

I have just started exploring SpringMVC and logback. This is my controller, (the only one i have so far)

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;

@Controller
public class IndexController {

    protected final ...

2. log in controller    forum.springsource.org

Hello!! I'm trying to write a logIn check module in a controller. I've got a LoginController that checks if the username and password is correct or displays the loginScreen if it's ...

3. Controller not getting called or not writting to log    forum.springsource.org

Sep 22nd, 2010, 07:38 AM #1 diyeys View Profile View Forum Posts Private Message Member Join Date Nov 2009 Posts 31 Controller not getting called or not writting to log Hello ...