With powerful named capture groups replace, we can quickly add swagger annotations based on comment
find: (?<title1>\/\*\*\n \* (?<title>.*)\n \*/$)
replace: ${title1}\n @ApiModelProperty(notes = "${title}")
Before
After
With powerful named capture groups replace, we can quickly add swagger annotations based on comment
find: (?<title1>\/\*\*\n \* (?<title>.*)\n \*/$)
replace: ${title1}\n @ApiModelProperty(notes = "${title}")
Before
After