Changeset 23 for trunk/fmgVen/src


Ignore:
Timestamp:
Jul 20, 2010, 7:47:08 PM (14 years ago)
Author:
fmguler
Message:

Refs #3 - Spring 2.5 libraries are added. Old spring 2 jar is removed. The main dependency is spring-jdbc.jar and spring-beans.jar, spring-core.jar and spring-tx.jar are referenced from them. For testing with postgresql, its driver is added.

The interface is translated to the new Ven class. Instead of adding 'object' to all of the methods, I aimed to make it less verbose, so just shortened the name of the methods to list, get save, delete.

Lastly, we have a class to demonstrate the usage called 'Sample' in the test packages.

Location:
trunk/fmgVen/src
Files:
2 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/fmgVen/src/com/fmguler/ven/Ven.java

    r22 r23  
    1818package com.fmguler.ven; 
    1919 
     20import java.util.List; 
     21import javax.sql.DataSource; 
     22import org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate; 
     23 
    2024/** 
    2125 * The main class for data access 
     
    2327 */ 
    2428public class Ven { 
     29    private NamedParameterJdbcTemplate template; 
     30    private QueryGenerator generator; 
     31    private QueryMapper mapper; 
     32 
     33    public Ven() { 
     34        generator = new QueryGenerator(); 
     35        mapper = new QueryMapper(); 
     36    } 
     37 
     38    public List list() { 
     39        return null; 
     40    } 
     41 
     42    public int count() { 
     43        return 0; 
     44    } 
     45 
     46    public Object get(int no, Class objectClass) { 
     47        return null; 
     48    } 
     49 
     50    public void save(Object object) { 
     51    } 
     52 
     53    public void delete(int no, Class objectClass) { 
     54    } 
     55 
     56    //SETTERS------------------------------------------------------------------- 
     57    public void setDataSource(DataSource dataSource) { 
     58        if (dataSource == null) throw new RuntimeException("fmgVen - DataSource cannot be null"); 
     59        this.template = new NamedParameterJdbcTemplate(dataSource); 
     60    } 
     61 
     62    public Ven addDomainPackage(String domainPackage) { 
     63        generator.addDomainPackage(domainPackage); 
     64        mapper.addDomainPackage(domainPackage); 
     65        return this; 
     66    } 
    2567} 
  • trunk/fmgVen/src/net/fmg/ven/SorguEslestirici.java

    r22 r23  
    124124                 
    125125            } 
    126         } catch(SQLException ex){ 
     126        } catch(Exception ex){ 
    127127            ex.printStackTrace(); 
    128128        } 
Note: See TracChangeset for help on using the changeset viewer.