2014年12月30日火曜日

プライベートIPアドレスの範囲

プライベートIPアドレスの範囲はクラスAからCに分けられて、
クラスA:10.0.0.0〜10.255.255.255
クラスB:172.16.0.0〜172.31.255.255
クラスC:192.168.0.0〜192.168.255.255

2014年12月25日木曜日

IntelliJ IDEAのよく使うショートカットキー

行のコピー: cmd+D
行の削除: cmd+Y (eclipseはctrl+d)
宣言 Declaration: cmd+B or alt+cmd+B
Text to find: shift + cmd + f
Extract Method: alt+cmd+M
Inline: alt+cmd+N
Extract Variable:alt + cmd + v
find usage: alt + F7
ファイル名で開く: shift + cmd + N
rename : shift + Fn+f6
recent files: cmd+E


2014年12月23日火曜日

Thymeleafで1から5までループ

Thymeleafで1から5までループする例
<select name="hoge">
  <option th:each="i : ${#numbers.sequence(1, 5)}" th:value="${i}" th:text="${i}"></option>
</select>