Is it possible in springframework to log the time taken by methods [ selective | all ] automatically. By automatically i mean, i don\'t want to go to each method and write the l
You can use AspectJ for this, declare a log pointcut called by wildcard with pre- and post handling by before() and after() advice.