Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 20th, 2012  |  syntax: None  |  size: 0.28 KB  |  hits: 5  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. @Service
  2. public class FooRepository {
  3.  
  4.     @Resource
  5.     private JdbcOperations jdbcOperations;
  6.  
  7.     @PostConstruct
  8.     public void init() {
  9.         log.info("Database server time is: {}", jdbcOperations.queryForObject("SELECT CURRENT_TIMESTAMP", Date.class));
  10.     }
  11.    
  12.     //...
  13.    
  14. }