In your spring config file:
- <context:property-placeholder location="classpath:application.properties">
- </context:property-placeholder>
In application.properties:
fooTableName=FOO_T
In your spring config file: (note sorry about the odd xml declaration, this blogger pre xml doesn't let me define the xml in one line using "/"?)
- <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
- <property name="dataSource" ref="myDS"></property>
- <property name="typeAliasesPackage" value="com.foo.domain"></property>
- <property name="configurationProperties">
- <props>
- <prop key="fooTableName">${fooTableName}</prop>
- </props>
- </property>
- </bean>
Now in your mapper:
- <select id="fetchStuff" resultmap="myResultMap">
- SELECT stuff FROM ${fooTableName}
- </select>
Thanks to post at http://stackoverflow.com/questions/8392741/mybatis-defining-a-global-parameter/8422082#8422082