Skip to content

Commit 76a4ae2

Browse files
fp024Copilot
andcommitted
오탈자 체크 목록 정리
Co-authored-by: Copilot <copilot@github.com>
1 parent b6a6504 commit 76a4ae2

3 files changed

Lines changed: 19 additions & 1 deletion

File tree

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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: []

part-last/my-board-mds/src/main/java/org/fp024/config/ServletConfig.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
import org.fp024.util.GsonHelper;
44
import org.springframework.context.annotation.ComponentScan;
5+
import org.springframework.context.annotation.Configuration;
56
import org.springframework.http.converter.HttpMessageConverters;
67
import org.springframework.security.config.annotation.method.configuration.EnableMethodSecurity;
78
import org.springframework.web.servlet.config.annotation.EnableWebMvc;
@@ -12,6 +13,7 @@
1213
import org.springframework.web.servlet.view.InternalResourceViewResolver;
1314
import org.springframework.web.servlet.view.JstlView;
1415

16+
@Configuration
1517
@EnableWebMvc
1618
@ComponentScan(basePackages = {"org.fp024.controller"})
1719
@EnableMethodSecurity(securedEnabled = true)

part-last/my-board-mds/src/main/java/org/fp024/controller/ReplyController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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);

0 commit comments

Comments
 (0)