Websites
Search
Follow us on Twitter
- Cake Solutions - January 2012 Newsletter #constantcontact http://t.co/kG8mdRTC 19 hours ago
- Why we come to work at Cake: http://t.co/K3f2HNan 1 day ago
- #Specs2Spring 0.4 is out with support for #springframework 2.5-3.1, #hibernate 4 and many other improvements. http://t.co/io3NPEZn… #Scala 2 days ago
- Cake's January Newsletter - Oxford Office, Outtake video and much more.... http://t.co/OlZddnNJ 3 days ago
- I just uploaded "Cake the Movie - Outtakes" on Vimeo: http://t.co/2rQOvo3w 3 days ago
Archive
Cake Solutions
agile AJAX Akka Cake pattern Cloud dm Server Haskell intellij intellij idea iPhone java Java EE Javascript jQuery lift mongodb open source central Open Spring 3 OSGi Play Programmers' humour Projects racing rails ruby ruby on rails sbt Scala Scalad scala ide Scalaz Specs2 Specs2 Spring Specs2 Spring Web Spring Spring 3 Spring 3.0 Spring Framework spring mvc springsource Spring User Group SUG Talk training zookeeper-
Recent Posts
Tag Archives: AOP
Scala and AspectJ
I like Spring Framework‘s transactional support, especially the transactional aspects. The aspects, in combination with various implementations of the PlatformTransactionManagers and AspectJ’s load-time weaving let me use declarative transaction management. So, in Spring, I can have @Service @Transactional public class … Continue reading
Sub-millisecond Java
Imagine you had to implement (complex) code in Java that runs in sub-millisecond time. How will you know that you’ve succeeded? The traditional measurement such as this one won’t work. long before = System.currentTimeMillis(); doSomeWork(); long elapsed = System.currentTimeMillis() – … Continue reading