SqlSessionFactoryBuilderのメソッドで、

org.apache.ibatis.session.SqlSessionFactoryBuilder

SqlSessionFactoryBuilder の build メソッドは、Reource だけでなく
Reource と Enviroment 名を指定することができる

これは、Configration.xml に書く、environment の名前である。
つまり、複数のDataSouce 利用を Configration.xml に、environment
記述し、SqlSessionFactory 生成で使用する DataSource を指定できる
ということである。

SqlSessionFactory factory = new SqlSessionFactoryBuilder()
.build(Resources.getResourceAsReader("Configration.xml"),"UranData");

と書けば、<environment id="UranData"> の DataSource を使うことになる