Today I Learned/2022

Spring REST Docs ๊ฐœํ–‰

YURI๐Ÿ•๐Ÿ“๐Ÿถ 2022. 10. 20. 15:29
๋ฐ˜์‘ํ˜•

Spring REST Docs ๊ฐœํ–‰

  1. ๋ฐ”๋กœ ๊ฐœํ–‰ ๋ฌธ์ž๋ฅผ ์ž…๋ ฅํ•˜๋ฉด ์•ˆ๋˜๊ณ , ๋ฌธ์ž์—ด์•ˆ์— + ๋ช…์‹œ ํ›„ \n ์ž…๋ ฅ
// ๊ฐœํ–‰์ „ ๋ฌธ์ž์—ด์— ํ•œ์นธ(์ŠคํŽ˜์ด์Šค) ๋„๊ณ  + ์ž…๋ ฅ
// ๊ทธ๋ฆฌ๊ณ  ๊ฐœํ–‰ ๋ฌธ์ž๋ฅผ ๋”ฐ๋กœ "\n"
parameterWithName("name").description("This is the description +" + "\n" + "in the table."),


// ์•ˆ๋˜๋Š” ๋ฒ„์ „
parameterWithName("name").description("This is the description \n in the table."),

 

๐Ÿ‘ Reference

๋ฐ˜์‘ํ˜•