moved website folder

This commit is contained in:
2019-10-11 11:17:06 +02:00
parent 26fa5aacbb
commit dfd3cff5a2
41 changed files with 237 additions and 21 deletions

View File

@@ -1,6 +1,8 @@
package com.wasteinformationserver;
import com.wasteinformationserver.basicutils.Log;
import com.wasteinformationserver.mqtt.*;
import com.wasteinformationserver.website.Webserver;
public class main {
public static void main(String[] args) {
@@ -10,7 +12,7 @@ public class main {
D.printList();
*/
/* Runtime.getRuntime().addShutdownHook(new Thread(() -> {
Runtime.getRuntime().addShutdownHook(new Thread(() -> {
try {
Thread.sleep(200);
Log.warning("Shutting down ...");
@@ -24,11 +26,11 @@ public class main {
Thread mythread = new Thread(() -> new Webserver().startserver());
mythread.start();
Log.message("thread started");*/
Log.message("thread started");
mqtt m = new mqtt();
m.notifymessage();
m.getDatabasedata();
// mqtt m = new mqtt();
// m.notifymessage();
// m.getDatabasedata();
}
}