Put the webserver

This commit is contained in:
Mathieu Sanchez 2019-06-12 12:05:50 +09:00
parent 1c36a2676a
commit cf33115501
5 changed files with 156 additions and 110 deletions

View File

@ -35,6 +35,46 @@
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
<configuration>
<archive>
<manifest>
<mainClass>com.nlp.App</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</plugin>
<!-- Make this jar executable -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<!-- DO NOT include log4j.properties file in your Jar -->
<excludes>
<exclude>**/log4j.properties</exclude>
</excludes>
<archive>
<manifest>
<!-- Jar file entry point -->
<mainClass>com.nlp.App</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<groupId>PQMAN</groupId>

View File

@ -1,3 +1,5 @@
package com.nlp;
import com.google.gson.Gson;
import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
@ -28,8 +30,6 @@ public class App {
String[] url = {"https://www.thesun.co.uk/?s=", "https://www.bbc.co.uk/search?q=", "https://www.skysports.com/search?q="};
List<List<String>> documents = new ArrayList<>();
List<List<String>> result = new ArrayList<>();
List<String> result2 = new ArrayList<>();
String document;
List<String> goodUrl = new ArrayList<>();
Article data = new Article();

View File

@ -1,3 +1,5 @@
package com.nlp;
import java.util.ArrayList;
public class Article {

View File

@ -1,3 +1,5 @@
package com.nlp;
public class Result {
private String tfidf;

View File

@ -1,3 +1,5 @@
package com.nlp;
import java.util.List;
public class TFIDF {