|
@ -9,6 +9,9 @@ import org.springframework.web.bind.annotation.GetMapping; |
|
|
import org.springframework.web.bind.annotation.RequestMapping; |
|
|
import org.springframework.web.bind.annotation.RequestMapping; |
|
|
import org.springframework.web.bind.annotation.RestController; |
|
|
import org.springframework.web.bind.annotation.RestController; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* контролллер для проверки жива ли эта хуйня и че там по бд |
|
|
|
|
|
*/ |
|
|
@RestController |
|
|
@RestController |
|
|
@RequestMapping("/api/pulse") |
|
|
@RequestMapping("/api/pulse") |
|
|
public class PulseController { |
|
|
public class PulseController { |
|
@ -28,6 +31,10 @@ public class PulseController { |
|
|
return new ResponseEntity(dbService.getDBServerTime(), HttpStatus.OK); |
|
|
return new ResponseEntity(dbService.getDBServerTime(), HttpStatus.OK); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* ЕСЛИ 0 ЗНАЧИТ ЗАЕБИСЬ |
|
|
|
|
|
* @return |
|
|
|
|
|
*/ |
|
|
@GetMapping("/db/diff") |
|
|
@GetMapping("/db/diff") |
|
|
public ResponseEntity<Long> getDiff() { |
|
|
public ResponseEntity<Long> getDiff() { |
|
|
return new ResponseEntity<>(onlineUpdater.getDifferentReplica(), HttpStatus.OK); |
|
|
return new ResponseEntity<>(onlineUpdater.getDifferentReplica(), HttpStatus.OK); |
|
|