From 89c37a5fd6a42b8f1982a02d17c7edecd6c229ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Nicoll?= Date: Fri, 11 Oct 2024 15:41:55 +0200 Subject: [PATCH] Remove dead links Closes gh-906 --- src/docs/asciidoc/views.adoc | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/docs/asciidoc/views.adoc b/src/docs/asciidoc/views.adoc index bdbd6cf4..697476b3 100644 --- a/src/docs/asciidoc/views.adoc +++ b/src/docs/asciidoc/views.adoc @@ -360,8 +360,6 @@ In fact, `Formatters` are registered as `GenericConverter` types with Spring's ` One of the best features of the type conversion is the ability to use annotations for better control over formatting in a concise manner. You can place annotations on model attributes and on the arguments of `@Controller` methods that are mapped to requests. Spring provides two annotations (`@NumberFormat` and `@DateTimeFormat`), but you can create your own and have them be registered, along with the associated formatting logic. -You can see examples of the `@DateTimeFormat` annotation in the https://src.springframework.org/svn/spring-samples/travel[Spring Travel] sample and in the https://src.springframework.org/svn/spring-samples/petcare[Petcare] sample, along with other samples in the https://src.springframework.org/svn/spring-samples[Spring Samples] repository. -// TODO These URLs are wrong, but I can't find the right ones. [[_converter_dates]] ==== Working With Dates