TelegramBots/telegrambots-spring-boot-st...
Ruben Bermudez d78acbdda0 Update poms and fix guava 2019-04-05 00:52:35 +01:00
..
src Use stream to scan for annotations and to execute the methods 2019-01-19 09:49:44 +01:00
README.md Update versions 2019-01-27 23:37:46 +00:00
pom.xml Update poms and fix guava 2019-04-05 00:52:35 +01:00

README.md

abilitybots

Build Status Jitpack JavaDoc Telegram ghit.me

Usage

Maven

    <dependency>
        <groupId>org.telegram</groupId>
        <artifactId>telegrambots-spring-boot-starter</artifactId>
        <version>4.1.2</version>
    </dependency>

Gradle

    compile "org.telegram:telegrambots-spring-boot-starter:4.1.2"

Motivation

If you are spring boot user it`s better to be in touch with spring starters. This module allows to register bots in spring context automatically and also use them as standard spring beans.

How to use

Your main spring boot class should look like this:

@SpringBootApplication
public class YourApplicationMainClass {

	public static void main(String[] args) {
	    //Add this line to initialize bots context
		ApiContextInitializer.init();
		
		SpringApplication.run(MusicUploaderApplication.class, args);
	}
}

After that your bot will look like:

  //Standard Spring component annotation
  @Component
  public class YourBotName extends TelegramLongPollingBot {
    //Bot body.
  }

Also you could just implement LongPollingBot or WebHookBot interfaces. All this bots will be registered in context and connected to Telegram api.