示例#1
0
 protected void setUp() {
   Resource res = new FileSystemResource("build/classes/beans.xml");
   XmlBeanFactory factory = new XmlBeanFactory(res);
   DataSource vfbDS = (DataSource) factory.getBean("vfbDataSource");
   this.setDataSource(vfbDS);
   LOG.debug("data source : " + vfbDS);
 }
示例#2
0
 /**
  * Queries the tables to extract salient information (feature structure name, reference details)
  * for a transgene query
  */
 @SuppressWarnings({"unchecked", "unused"})
 public List<Record> getAll() {
   String query = "select * from fc_mapping";
   LOG.debug("Query : " + query);
   long startTime = System.currentTimeMillis();
   List<Record> results =
       this.jdbcTemplate.query(
           query, new Object[] {}, (RowMapper) new FCMappingResultSetExtractor());
   return results;
 }
示例#3
0
 private void process() {
   List<Record> list = this.getAll();
   for (Record curr : list) {
     LOG.debug("curr:" + curr);
   }
 }