Skip to content
Snippets Groups Projects
Commit 63d1250b authored by Oto Stanko's avatar Oto Stanko
Browse files

Persisting some drivers

parent 48698ff5
No related branches found
No related tags found
2 merge requests!79Final solution of milestone 3,!6223 persisting data
Pipeline #
package cz.muni.pa165.component; package cz.muni.pa165.component;
import jakarta.persistence.EntityManagerFactory;
import org.springframework.boot.SpringApplication; import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.autoconfigure.domain.EntityScan; import org.springframework.boot.autoconfigure.domain.EntityScan;
import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Bean;
import org.springframework.data.jpa.repository.config.EnableJpaRepositories;
import org.springframework.web.client.RestTemplate; import org.springframework.web.client.RestTemplate;
/** /**
* Main app. * Main app.
*/ */
......
...@@ -9,16 +9,16 @@ import org.springframework.stereotype.Service; ...@@ -9,16 +9,16 @@ import org.springframework.stereotype.Service;
import java.math.BigDecimal; import java.math.BigDecimal;
@Service @Service
public class Seed { public class PersistingCarComponents {
private final ComponentRepositoryInterface carComponentRepository; private final ComponentRepositoryInterface carComponentRepository;
@Autowired @Autowired
public Seed(ComponentRepositoryInterface carComponentRepository) { public PersistingCarComponents(ComponentRepositoryInterface carComponentRepository) {
this.carComponentRepository = carComponentRepository; this.carComponentRepository = carComponentRepository;
} }
@PostConstruct @PostConstruct
public void seed() { public void persistingCarComponents() {
// name, weight, price, manufacturer // name, weight, price, manufacturer
carComponentRepository.deleteAll(); carComponentRepository.deleteAll();
......
...@@ -17,6 +17,7 @@ import org.springframework.web.bind.annotation.RequestMapping; ...@@ -17,6 +17,7 @@ import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController; import org.springframework.web.bind.annotation.RestController;
/** /**
* Controller for managing the components. * Controller for managing the components.
*/ */
......
package cz.muni.pa165.driver.config;
import cz.muni.pa165.driver.data.model.Driver;
import cz.muni.pa165.driver.data.repository.DriverRepository;
import jakarta.annotation.PostConstruct;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.Map;
@Service
public class PersistingDrivers {
private final DriverRepository driverRepository;
@Autowired
public PersistingDrivers(DriverRepository driverRepository) {
this.driverRepository = driverRepository;
}
@PostConstruct
public void persistDrivers() {
driverRepository.deleteAll();
// name, surname, nationality
var firstDriver = new Driver("Andrej", "MamNaSalame", "Z koša");
var firstDriverChars = Map.of("Experience", 4,
"Consistency", 0,
"Racecraft", 5,
"Aggressiveness", 1);
firstDriver.setCharacteristics(firstDriverChars);
var secondDriver = new Driver("Tomas", "Tomas", "Tomas");
var secondDriverChars = Map.of("Experience", 5,
"Consistency", 5,
"Racecraft", 2,
"Aggressiveness", 4);
secondDriver.setCharacteristics(secondDriverChars);
var thirdDriver = new Driver("Oto", "VymyslamHluposti", "yes");
var thirdDriverChars = Map.of("Experience", 2,
"Consistency", 4,
"Racecraft", 4,
"Aggressiveness", 5);
thirdDriver.setCharacteristics(thirdDriverChars);
driverRepository.save(firstDriver);
driverRepository.save(secondDriver);
driverRepository.save(thirdDriver);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment