diff --git a/README.md b/README.md index ad1e876..bce8a12 100644 --- a/README.md +++ b/README.md @@ -757,7 +757,7 @@ Controller의 @RequestMapping은 Camel Case 문자열 형태로 다음과 같이 * 단건 입력 : `insert` + `MethodName` + `.json` * 단건 수정 : `update` + `MethodName` + `.json` * 단건 삭제 : `delete` + `MethodName` + `.json` - * 다건 저장(입력/수정/삭제) : `save` + `MethodName` + `.json` + * 다건 저장(입력/수정/삭제) : `save` + `MethodName` + `List.json` * 출력 : `get` + `MethodName` + `.print` * 엑셀 다운로드 : `get` + `MethodName` + `List` + `.xlsx` * 엑셀 업로드 : `save` + `MethodName` + `.xlsx` diff --git a/src/main/resources/static/html/com/app/sample/documents.html b/src/main/resources/static/html/com/app/sample/documents.html index 6793a5e..9d36c59 100644 --- a/src/main/resources/static/html/com/app/sample/documents.html +++ b/src/main/resources/static/html/com/app/sample/documents.html @@ -753,7 +753,7 @@ * 단건 입력 : `insert` + `MethodName` + `.json` * 단건 수정 : `update` + `MethodName` + `.json` * 단건 삭제 : `delete` + `MethodName` + `.json` - * 다건 저장(입력/수정/삭제) : `save` + `MethodName` + `.json` + * 다건 저장(입력/수정/삭제) : `save` + `MethodName` + `List.json` * 출력 : `get` + `MethodName` + `.print` * 엑셀 다운로드 : `get` + `MethodName` + `List` + `.xlsx` * 엑셀 업로드 : `save` + `MethodName` + `.xlsx`