Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chathurangat/767e903a1085993661fc17d51c06cd4d to your computer and use it in GitHub Desktop.
Save chathurangat/767e903a1085993661fc17d51c06cd4d to your computer and use it in GitHub Desktop.
package com.springbootdev.samples.producer;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.boot.CommandLineRunner;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.scheduling.annotation.EnableScheduling;
@SpringBootApplication
@EnableScheduling
public class SpringBootAmqpRabbitmqProducerApplication implements CommandLineRunner {
private static final Logger LOGGER = LoggerFactory.getLogger(SpringBootAmqpRabbitmqProducerApplication.class);
public static void main(String[] args)
{
SpringApplication.run(SpringBootAmqpRabbitmqProducerApplication.class, args);
}
@Override
public void run(String... strings) throws Exception
{
LOGGER.info("application is up and running");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment