|
|
@ -46,13 +46,9 @@ public class ImportServiceBean extends AbstractServiceBean implements ImportServ
|
|
|
|
for (Crdn crdn: crdns) {
|
|
|
|
for (Crdn crdn: crdns) {
|
|
|
|
List<FileInfo> files = byInfoKey.get(crdn.getLinkId());
|
|
|
|
List<FileInfo> files = byInfoKey.get(crdn.getLinkId());
|
|
|
|
|
|
|
|
|
|
|
|
for(FileInfo file : files) {
|
|
|
|
files.removeIf(item -> item.getMimeType().startsWith("video"));
|
|
|
|
|
|
|
|
|
|
|
|
if(file.getMimeType().startsWith("video")) {
|
|
|
|
|
|
|
|
files.remove(file);
|
|
|
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for(FileInfo file : files) {
|
|
|
|
file.setInputStream(file.getInputStream()); //신규 인풋스트림 생성
|
|
|
|
file.setInputStream(file.getInputStream()); //신규 인풋스트림 생성
|
|
|
|
file.setUrl(""); //인터페이스 첨부파일정보 제거
|
|
|
|
file.setUrl(""); //인터페이스 첨부파일정보 제거
|
|
|
|
file.setPath(""); //국민신문고 첨부파일정보 제거
|
|
|
|
file.setPath(""); //국민신문고 첨부파일정보 제거
|
|
|
|