parent
4c81e6c54f
commit
27936e1e5d
@ -1,21 +0,0 @@
|
|||||||
package com.luoo.comment.sensitiveWord;
|
|
||||||
|
|
||||||
import com.github.houbb.sensitive.word.api.IWordAllow;
|
|
||||||
import org.springframework.stereotype.Component;
|
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
@Component
|
|
||||||
public class MyDdWordAllow implements IWordAllow {
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public List<String> allow() {
|
|
||||||
List<String> list = new ArrayList<>();
|
|
||||||
list.add("五星红旗");
|
|
||||||
list.add("天安门");
|
|
||||||
|
|
||||||
return list;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
@ -1,34 +0,0 @@
|
|||||||
package com.luoo.comment.sensitiveWord;
|
|
||||||
|
|
||||||
import com.github.houbb.sensitive.word.api.IWordDeny;
|
|
||||||
import org.springframework.core.io.ClassPathResource;
|
|
||||||
import org.springframework.core.io.Resource;
|
|
||||||
import org.springframework.stereotype.Component;
|
|
||||||
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.nio.charset.StandardCharsets;
|
|
||||||
import java.nio.file.Files;
|
|
||||||
import java.nio.file.Path;
|
|
||||||
import java.nio.file.Paths;
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
@Component
|
|
||||||
public class MyDdWordDeny implements IWordDeny {
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public List<String> deny() {
|
|
||||||
List<String> list = new ArrayList<>();
|
|
||||||
list.add("落网");
|
|
||||||
Resource mySensitiveWords = new ClassPathResource("denyWords.txt");
|
|
||||||
try {
|
|
||||||
Path mySensitiveWordsPath = Paths.get(mySensitiveWords.getFile().getPath());
|
|
||||||
list = Files.readAllLines(mySensitiveWordsPath, StandardCharsets.UTF_8);
|
|
||||||
|
|
||||||
} catch (IOException e) {
|
|
||||||
throw new RuntimeException(e);
|
|
||||||
}
|
|
||||||
|
|
||||||
return list;
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in new issue