org.cloudfun.msaconfig.funconfigserver.WEB.TestwEB Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fun-config-server Show documentation
Show all versions of fun-config-server Show documentation
build config-server standlone
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