前提・実現したいこと
- Springboot 2.0.1
RestControllerに送られるPostリクエストの@RequestBodyのBeanのフィールドに対して
AnnotationFormatterFactoryを利用し、カスタムアノテーションを実現したい。
発生している問題・エラーメッセージ
AnnotationFormatterFactoryを利用して実装したが
Bean内のフィールドにアノテーションを付与しても動作しない
※@RequestParamに対しては正しく動作している。
※同じアノテーションで、Validationも実施しているが、正しく動作している。
動作していないというのは、結果値がフォーマットされていない
かつ
デバッグで通らない状態
ソースの一部抜粋
■フォーマッター関連
- SampleFormat(アノテーション)
@Documented @Constraint(validatedBy = {SampleValidator.class}) //@Constraint(validatedBy = {}) @Target({METHOD,FIELD,ANNOTATION_TYPE, CONSTRUCTOR, PARAMETER}) @Retention(RUNTIME) @ReportAsSingleViolation public @interface SampleFormat { /** 制約違反時のメッセージ。 */ String message() default "test"; /** 状況に応じて制約チェックの実行の是非を判別させるための属性。 */ Class<?>[] groups() default {}; /** 制約違反に対して重要度などの任意のカテゴリを付与する属性。 */ Class<? extends Payload>[] payload() default {}; @Target({ METHOD, FIELD, ANNOTATION_TYPE, CONSTRUCTOR, PARAMETER }) @Retention(RUNTIME) @Documented @interface List { SampleFormat[] value(); }
- SampleFormatter(処理は割愛)
@Component public class SampleFormatter implements AnnotationFormatterFactory<SampleFormat>{ @Override public Set<Class<?>> getFieldTypes() { } @Override public Printer<?> getPrinter(SampleFormat annotation, Class<?> fieldType) { } @Override public Parser<?> getParser(SampleFormat annotation, Class<?> fieldType) { } protected Formatter<String> getFormatter(SampleFormat annotation, Class<?> fieldType) { AttributeFormatter formatter = new AttributeFormatter(); return formatter; } private class AttributeFormatter implements Formatter<String>{ @Override public String print(String object, Locale locale) { } @Override public String parse(String text, Locale locale) throws ParseException { } } }
- FormatManager
@Component public class FormatManager { private List<AnnotationFormatterFactory<?>> formatterList = new ArrayList<>(); private void initialize() { this.formatterList.add(new SampleFormatter()); } }
- WebMvcConfig
@Configuration public class WebMvcConfig implements WebMvcConfigurer { @Autowired private FormatManager formatManager; @Override public void addFormatters(FormatterRegistry registry) { formatManager.getFormatter().forEach(formatter -> registry.addFormatterForFieldAnnotation(formatter)); } }
- SampleBean
public class SampleBean { @SampleFormat private String name; }
- RestController
@RestController @Validated public class IndexController { @InitBinder public void init(WebDataBinder binder) { } private SampleBean form; public SampleBean setupForm() { form = new SampleBean(); return form; } ★★★★★★このメソッドに送られてくるリクエストパラメータ(name)には@SampleFormatはFormatterが動作する★★★★★★ @GetMapping(path="/request", produces=MediaType.APPLICATION_JSON_UTF8_VALUE) public String testRequestParam(@Valid @RequestParam(name="name", required=false) @SampleFormat @Length(max=100, min=5) String name) { return "test"; } ★★★★★★このメソッドに送られてくるリクエストボディ(SampleBean)内の@SampleFormatはFormatterが動作しない★★★★★★ @PostMapping(path="/bean", produces=MediaType.APPLICATION_JSON_UTF8_VALUE) public String testRequestbean(@Validated @RequestBody SampleBean bean) { form.setName(bean.getName()); return "test"; } }
あなたの回答
tips
プレビュー