Java

【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>

【Java】Spring Boot + Thymeleaf で外部cssファイルが404エラー

Spring Boot + Thymeleaf で外部cssファイルが404エラー フォルダ構成 htmlヘッダー内抜粋 <link rel="stylesheet" type="text/css" href="../static/css/common.css"> 結果 GET http://localhost:8080/src/main/resources/static/css/common.css net::ERR_ABORTED 404 解決方法 htmlファイルヘッダーの記述を以下のように書き換える</link>…