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
Copy file name to clipboardExpand all lines: docs/faq.html
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1355,6 +1355,9 @@ <h3 id="_how_can_i_extract_fields_from_parameter_object">How can I extract field
1355
1355
<li>
1356
1356
<p>This annotation does not support nested parameter objects.</p>
1357
1357
</li>
1358
+
<li>
1359
+
<p>POJO object must contain getters for fields with mandatory prefix <code>get</code>. Otherwise, the swagger documentation will not show the fields of the annotated entity.</p>
<p>This annotation does not support nested parameter objects.</p>
3448
3448
</li>
3449
+
<li>
3450
+
<p>POJO object must contain getters for fields with mandatory prefix <code>get</code>. Otherwise, the swagger documentation will not show the fields of the annotated entity.</p>
Copy file name to clipboardExpand all lines: docs/v2/faq.html
+6-3Lines changed: 6 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1346,6 +1346,9 @@ <h3 id="_how_can_i_extract_fields_from_parameter_object">How can I extract field
1346
1346
<li>
1347
1347
<p>This annotation does not support nested parameter objects.</p>
1348
1348
</li>
1349
+
<li>
1350
+
<p>POJO object must contain getters for fields with mandatory prefix <code>get</code>. Otherwise, the swagger documentation will not show the fields of the annotated entity.</p>
<p>This annotation does not support nested parameter objects.</p>
3319
3319
</li>
3320
+
<li>
3321
+
<p>POJO object must contain getters for fields with mandatory prefix <code>get</code>. Otherwise, the swagger documentation will not show the fields of the annotated entity.</p>
* Request parameter annotated with @ParameterObject will help adding each field of the parameter as a separate request parameter.
627
627
* This is compatible with Spring MVC request parameters mapping to POJO object.
628
628
* This annotation does not support nested parameter objects.
629
+
* POJO object must contain getters for fields with mandatory prefix `get`. Otherwise, the swagger documentation will not show the fields of the annotated entity.
629
630
630
631
=== How can I use the last `springdoc-openapi` SNAPSHOT ?
631
632
* For testing purposes only, you can test temporarily using the last `springdoc-openapi` SNAPSHOT
0 commit comments