1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Mybatis

Last updated at Posted at 2024-03-19
<!-- YourMapper.xml -->

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
  PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
  "http://mybatis.org/dtd/mybatis-3-mapper.dtd">

<mapper namespace="com.example.YourMapper">
    <select id="selectForUpdateNowait" resultType="YourResultType">
        SELECT * FROM your_table
        WHERE id = #{id}
        FOR UPDATE NOWAIT
    </select>
</mapper>
<!-- generatorConfig.xml -->

<generatorConfiguration>
    <!-- 既存の設定... -->

    <!-- 生成されるXMLファイルへのパスを指定 -->
    <sqlMapGenerator targetPackage="com.example.mapper" targetProject="src/main/resources">
        <!-- カスタムXMLファイルを追加 -->
   
    <sqlFile path="YourMapper.xml" />
    </sqlMapGenerator>
</generatorConfiguration>

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?