2020-10-01から1ヶ月間の記事一覧

【教訓】【雑記】安物買いの銭失い

私はピアスが大好きでよくネットで掘り出し物を探しては買っているのだが、今回それでとても痛い目を見たので書き残して置こうと思う。今回購入したピアスは Bodywell という会社が販売しているフレッシュトンネルタイプのチェーンピアスだ。 Bodywellという…

【Java】【MyBatis】Mybatisでincludeした際のpropertyの話。

Mybatisでincludeした際のpropertyの話。 interface.java selectUserTable(@Param("id") String id, @Param("pw") String pw); mapper.xml <select id="selectUserTable"> <include refid="includeSql"> <property name="tblname" value="user_table"/> </include></select><sql id="includeSql"> select * from ${ tblname } -- ←半…</sql>