All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.capitalone.dashboard.rest.PingController Maven / Gradle / Ivy

package com.capitalone.dashboard.rest;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.PropertySource;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

import static org.springframework.http.MediaType.APPLICATION_JSON_VALUE;
import static org.springframework.web.bind.annotation.RequestMethod.GET;

@PropertySource(ignoreResourceNotFound=true,value= "classpath:version.properties")

@RestController
public class PingController {

    @Value("${version.number}")
    private String versionNumber;

    public PingController() {

    }

    @RequestMapping(value = "/ping", method = GET, produces = APPLICATION_JSON_VALUE)
    public ResponseEntity ping () {
        return ResponseEntity
                .status(HttpStatus.OK)
                .body(true);
    }

    @RequestMapping(value = "/appinfo", method = GET, produces = APPLICATION_JSON_VALUE)
    public ResponseEntity getAppInfo() {
        String appVersion=versionNumber;
        return ResponseEntity.status(HttpStatus.OK).body(appVersion);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy