質問編集履歴
2
クエリを貼りました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -180,6 +180,36 @@
|
|
180
180
|
|
181
181
|
|
182
182
|
|
183
|
+
```
|
184
|
+
|
185
|
+
<?xml version="1.0" encoding="UTF-8" ?>
|
186
|
+
|
187
|
+
<!DOCTYPE mapper
|
188
|
+
|
189
|
+
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
190
|
+
|
191
|
+
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
192
|
+
|
193
|
+
<mapper namespace="net.dcp.questionnaire.mapper.ISampleMapper">
|
194
|
+
|
195
|
+
<insert id="insert" useGeneratedKeys="true" keyProperty="id">
|
196
|
+
|
197
|
+
INSERT INTO sample (title, details, finished) VALUES (#{title}, #{details}, #{finished})
|
198
|
+
|
199
|
+
</insert>
|
200
|
+
|
201
|
+
<select id="select" resultType="net.dcp.questionnaire.entity.SampleEntity">
|
202
|
+
|
203
|
+
SELECT id, title, details, finished FROM sample WHERE id = #{id}
|
204
|
+
|
205
|
+
</select>
|
206
|
+
|
207
|
+
</mapper>
|
208
|
+
|
209
|
+
```
|
210
|
+
|
211
|
+
|
212
|
+
|
183
213
|
### 試したこと
|
184
214
|
|
185
215
|
|
1
追加で試したことがあるので追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -196,6 +196,10 @@
|
|
196
196
|
|
197
197
|
|
198
198
|
|
199
|
+
パッケージの名前空間が合っていることも確認済みです。
|
200
|
+
|
201
|
+
|
202
|
+
|
199
203
|
### 補足情報(FW/ツールのバージョンなど)
|
200
204
|
|
201
205
|
|