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

org.cloudfun.msaconfig.funconfigserver.WEB.TestwEB Maven / Gradle / Ivy

The newest version!
package org.cloudfun.msaconfig.funconfigserver.WEB;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class TestwEB {
    Logger logger = LoggerFactory.getLogger(TestwEB.class);


    @RequestMapping("/logs")
    public String logs() {
        int a=0;
        while(a<1000){
            a++;
            logger.info("===================");
            logger.info("===================");
        }
        logger.info("===================");
        return "asfas";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy