File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ version : " 0.2"
2+ ignorePaths : []
3+ dictionaryDefinitions : []
4+ dictionaries : []
5+ words :
6+ - classloaders
7+ - Gson
8+ - hikari
9+ - Jstl
10+ - regdate
11+ - replyer
12+ - rttr
13+ - Smails
14+ - Thumbnailator
15+ ignoreWords : []
16+ import : []
Original file line number Diff line number Diff line change 22
33import org .fp024 .util .GsonHelper ;
44import org .springframework .context .annotation .ComponentScan ;
5+ import org .springframework .context .annotation .Configuration ;
56import org .springframework .http .converter .HttpMessageConverters ;
67import org .springframework .security .config .annotation .method .configuration .EnableMethodSecurity ;
78import org .springframework .web .servlet .config .annotation .EnableWebMvc ;
1213import org .springframework .web .servlet .view .InternalResourceViewResolver ;
1314import org .springframework .web .servlet .view .JstlView ;
1415
16+ @ Configuration
1517@ EnableWebMvc
1618@ ComponentScan (basePackages = {"org.fp024.controller" })
1719@ EnableMethodSecurity (securedEnabled = true )
Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ public ResponseEntity<ReplyVO> get(@PathVariable("rno") Long rno) {
8989 produces = {MediaType .TEXT_PLAIN_VALUE })
9090 public ResponseEntity <String > remove (@ RequestBody ReplyVO vo , @ PathVariable ("rno" ) Long rno ) {
9191 LOGGER .info ("remove: {}" , rno );
92- LOGGER .info ("replayer : {}" , vo .getReplyer ());
92+ LOGGER .info ("replyer : {}" , vo .getReplyer ());
9393 try {
9494 if (replyService .remove (vo .getRno ()) == 1 ) {
9595 return new ResponseEntity <>("Success" , HttpStatus .OK );
You can’t perform that action at this time.
0 commit comments