- Notifications
You must be signed in to change notification settings - Fork 155
Open
Labels
Description
SpringValueTagProcessor
could pass null
value as type
parameter of RequestDataValueProcessor#processFieldValue
although type
is defined as Nonnull parameter(not annotated @Nullable
)in spring-framework.
For example, when SpringValueTagProcessor
process <option value="aaa">
, type
will be null
(because option
has no type
attribute).
In the scenario like above example, i think IElementTag#getElementCompleteName
should be used as type
value.
I'll send small PR to fix this issue later.
thaks.