remove unused class

This commit is contained in:
Constantin Simonis 2025-02-05 10:50:45 +01:00
parent 32a83fd386
commit 71b5d2fa0e
No known key found for this signature in database
GPG key ID: 758DD9C506603183

View file

@ -1,33 +0,0 @@
package de.szut.casino.config;
import de.szut.casino.hello.HelloEntity;
import de.szut.casino.hello.HelloRepository;
import org.springframework.boot.ApplicationArguments;
import org.springframework.boot.ApplicationRunner;
import org.springframework.context.annotation.Bean;
import org.springframework.stereotype.Component;
import org.springframework.web.client.RestTemplate;
@Component
public class SampleDataCreator implements ApplicationRunner {
private HelloRepository repository;
public SampleDataCreator(HelloRepository repository) {
this.repository = repository;
}
public void run(ApplicationArguments args) {
repository.save(new HelloEntity("Hallo Welt!"));
repository.save(new HelloEntity("Schöner Tag heute"));
repository.save(new HelloEntity("FooBar"));
}
@Bean
public RestTemplate restTemplate() {
return new RestTemplate();
}
}