List of usage examples for org.apache.ibatis.datasource.jndi JndiDataSourceFactory getDataSource
@Override
public DataSource getDataSource()
From source file:org.mybatis.guice.datasource.builtin.JndiDataSourceProvider.java
License:Apache License
@Override public DataSource get() { JndiDataSourceFactory factory = new JndiDataSourceFactory(); factory.setProperties(properties);/*from ww w.j a v a2 s.co m*/ return factory.getDataSource(); }