List of usage examples for org.apache.ibatis.datasource.jndi JndiDataSourceFactory JndiDataSourceFactory
JndiDataSourceFactory
From source file:org.jboss.additional.testsuite.jdkall.present.jaxrs.jaxb.JaxbResourceDeserializationSecurityCheck.java
License:Open Source License
@GET @Path("datasource") @Produces(MediaType.APPLICATION_JSON)/*from w w w.j a va 2s . c o m*/ public Response getDatasource() throws RemoteException, IOException { JndiDataSourceFactory obj = new JndiDataSourceFactory(); return Response.ok().entity(obj).build(); }
From source file:org.mybatis.guice.datasource.builtin.JndiDataSourceProvider.java
License:Apache License
@Override public DataSource get() { JndiDataSourceFactory factory = new JndiDataSourceFactory(); factory.setProperties(properties); return factory.getDataSource(); }