update to SpringBoot 3.0.0

This commit is contained in:
2022-12-04 09:20:47 +01:00
parent 9e3a176535
commit 520461ecbf
3 changed files with 7 additions and 7 deletions

View File

@@ -1,9 +1,9 @@
package org.lucares.pdbui;
import javax.annotation.PostConstruct;
import org.springframework.stereotype.Component;
import jakarta.annotation.PostConstruct;
@Component
public class Ingestion {

View File

@@ -13,8 +13,6 @@ import java.util.concurrent.TimeUnit;
import java.util.concurrent.TimeoutException;
import java.util.concurrent.atomic.AtomicBoolean;
import javax.annotation.PreDestroy;
import org.lucares.pdb.api.StringCompressor;
import org.lucares.pdb.datastore.Entries;
import org.lucares.performance.db.PerformanceDb;
@@ -25,6 +23,8 @@ import org.springframework.beans.factory.DisposableBean;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import jakarta.annotation.PreDestroy;
@Component
public class TcpIngestor implements Ingestor, AutoCloseable, DisposableBean {
static final Logger LOGGER = LoggerFactory.getLogger(TcpIngestor.class);