You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a @Controller declares a handler method return type like Optional<Book>, the SchemaMappingInspector does not inspect the Book type and the resulting inspection report can mention the type and its fields as unmapped:
Unmapped fields: {Book=[id, title]}
The SchemaMappingInspector is currently aware of reactive types and unwraps them. We should have a similar approach for java.util.Optional.
The text was updated successfully, but these errors were encountered:
When a
@Controller
declares a handler method return type likeOptional<Book>
, theSchemaMappingInspector
does not inspect theBook
type and the resulting inspection report can mention the type and its fields as unmapped:The
SchemaMappingInspector
is currently aware of reactive types and unwraps them. We should have a similar approach forjava.util.Optional
.The text was updated successfully, but these errors were encountered: