LexProfi

Results 2 comments of LexProfi

> https://github.com/rubenlagus/TelegramBots/tree/master/telegrambots-spring-boot-starter This is not entirely suitable, because in `telegrambots-spring-boot-starter` it is proposed to create a class heir to `TelegramLongPollingBot` >import org.telegram.telegrambots.bots.TelegramLongPollingBot; While the ability library implements `LongPollingBot` >import org.telegram.telegrambots.meta.generics.LongPollingBot;...

Why can't this work in Spring boot 3.2.2? Does anyone know the cause of this problem? ``` @Component class MyBot extends TelegramLongPollingBot { public MyBot() { super("token"); } @Override public...