Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View m-reza-rahman's full-sized avatar

Reza Rahman m-reza-rahman

View GitHub Profile
@m-reza-rahman
m-reza-rahman / myBatisCDI
Last active August 29, 2015 14:08
MyBatis-CDI Example
public class SqlSessionFactoryProvider {
@Produces @ApplicationScoped
public SqlSessionFactory produceFactory() {
String resource = "org/mybatis/example/mybatis-config.xml";
InputStream inputStream = Resources.getResourceAsStream(resource);
SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
return sqlSessionFactory;
}
}