TDLightTelegramBots/telegrambots-spring-boot-starter
Ruben Bermudez c2ea41520b
Merge pull request #861 from costalfy/master
Upgrade to Spring boot 2.4.2
2021-02-14 21:54:19 +00:00
..
src Update changelog and how to update 2020-11-03 21:09:02 +00:00
pom.xml feat(spring boot): Upgrade spring boot dependency to 2.4.2 2021-01-29 12:14:47 +01:00
README.md Change "compile" to "implementation" (Gradle dependency) 2021-01-30 10:24:00 +03:00

abilitybots

Build Status Jitpack JavaDoc Telegram ghit.me

Usage

Maven

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

Gradle

    implementation 'org.telegram:telegrambots-spring-boot-starter:5.0.1'

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) {		
		SpringApplication.run(YourApplicationMainClass.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.