ソフトウェアエンジニアの日常の雑記

日々思ったことをまとめます

2018-07-01から1ヶ月間の記事一覧

このエラーの対応方法 org.im4java.core.CommandException: convert: no decode delegate for this image format

本家はこちらmacでim4javaを使おうとしたらこんなエラーが org.im4java.core.CommandException: convert: no decode delegate for this image format `' @ error/constitute.c/ReadImage/509. どうやらコーデックに対応していないとのこと。 Linuxでの対応サ…

Spring Webfluxでのinterceptorメモ

本家はこちらSpring WebfluxはServlet使えないのでInterceptorとかないらしい。 Spring WebfluxではWebFilterを使うらしいので、メモ。 import lombok.extern.slf4j.Slf4j; import org.springframework.context.annotation.Configuration; import org.spring…

Spring5 Reactive(webflux)での@validのBindingResultの書き方かわってたのでメモ

本家はこちらもしかしたらwebflux関係ないかもだけど、Spring5 Reactive触ってたら、(@valid Form form , BindingResult bindingResult) こんなのが動かなくて調べたらメソッドとして独立するようになっていた こんな感じ。 modelも引数にとれるので、viewを…