Nicht benoetigte Klassen entfernt
2 files deleted
2 files modified
| | |
| | | import java.io.File; |
| | | import java.io.IOException; |
| | | import java.util.HashMap; |
| | | import java.util.Map; |
| | | import java.util.ResourceBundle; |
| | | import java.util.logging.Level; |
| | | import java.util.logging.Logger; |
| | |
| | | server.createContext(ctx + rb.getString(RB_ALIST), new ListHandler(conf)); |
| | | server.createContext(ctx + rb.getString(RB_STOP_SERVER), new StopServerHandler()); |
| | | //server.setExecutor(Executors.newFixedThreadPool(20)); |
| | | server.setExecutor(Executors.newCachedThreadPool()); |
| | | server.setExecutor(Executors.newFixedThreadPool(5)); |
| | | server.start(); |
| | | } |
| | | |