Java
JUnitでSpringの@Autowiredを使う方法。
@ContextConfiguration
を使う。 http://javatechnology.net/spring/runwith-junit/;title文字列から数値に変換する方法. やっぱり例外は遅いのね。できるだけNumberUtils.isNumebrを使おう。 (isNumberは非推奨で、isCreatableを使うべき) » あえて言うほどではない 数値変換時の型チェック Java編 TECHSCORE BLOG NumberUtils (Apache Commons Lang 3.6 API)
なんか設計で迷ってしまう。デザインパターンの勉強が足りない。
JsHint
- JsHintの設定に1時間使ってしまった。。。
- [Redefinition of ‘{a}’]という警告は、
/*jshint -W079 */
で除去できる。ただしこれを宣言したファイル全てで、「Refefinition of~」という警告は無視される。
In JSHint 1.0.0 and above you have the ability to ignore any warning with a special option syntax. The identifier of this warning is W079. This means you can tell JSHint to not issue this warning with the /jshint -W079 / directive.
JSLint Error Explanations - を参考にした