All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.languagetool.server.mybatis-config.xml Maven / Gradle / Ivy

There is a newer version: 6.5
Show newest version
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
  <environments default="development">
    <environment id="development">
      <transactionManager type="JDBC"/>
      <dataSource type="POOLED">
        <property name="driver" value="${driver}"/>
        <property name="url" value="${url}"/>
        <property name="username" value="${username}"/>
        <property name="password" value="${password}"/>
      </dataSource>
    </environment>
  </environments>
  <mappers>
    <mapper resource="org/languagetool/server/DictMapper.xml"/>
    <mapper resource="org/languagetool/server/LogMapper.xml"/>
  </mappers>
</configuration>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy