스타일 적용
This commit is contained in:
@@ -25,7 +25,7 @@ public class CsvFileProcessor implements ZipEntryProcessor {
|
||||
String[] cols = line.split(",");
|
||||
// CSV 처리
|
||||
for (String col : cols) {
|
||||
log.info(col); //TODO : 추후에 csv 파일 읽어서 작업 필요할 때 정의하기
|
||||
log.info(col); // TODO : 추후에 csv 파일 읽어서 작업 필요할 때 정의하기
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
@@ -46,7 +46,7 @@ public class JsonStreamingFileProcessor implements ZipEntryProcessor {
|
||||
|
||||
if (token == JsonToken.FIELD_NAME) {
|
||||
String fieldName = parser.getCurrentName();
|
||||
//TODO: json 파일 읽어야 할 내용 정의되면 항목 확정하기
|
||||
// TODO: json 파일 읽어야 할 내용 정의되면 항목 확정하기
|
||||
switch (fieldName) {
|
||||
case "type" -> {
|
||||
parser.nextToken();
|
||||
|
||||
@@ -21,7 +21,7 @@ public class TextFileProcessor implements ZipEntryProcessor {
|
||||
BufferedReader br = new BufferedReader(new InputStreamReader(is));
|
||||
String line;
|
||||
while ((line = br.readLine()) != null) {
|
||||
log.info(line); //TODO : 추후 txt 파일 읽어서 작업할 때 정의하기
|
||||
log.info(line); // TODO : 추후 txt 파일 읽어서 작업할 때 정의하기
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -36,8 +36,7 @@ public class ModelMngApiController {
|
||||
|
||||
private final ModelMngService modelMngService;
|
||||
|
||||
@Autowired
|
||||
private ZipUtils zipUtils;
|
||||
@Autowired private ZipUtils zipUtils;
|
||||
|
||||
@Operation(summary = "모델관리 목록")
|
||||
@GetMapping
|
||||
|
||||
Reference in New Issue
Block a user