I want to use BotDetect Catpcha in my SpringBoot application but unfortunately BotDetect requires me to make Captcha Definitions at web.xml. But I do not have web.xml. Do you think is it possible to make servlet definitions at SpringBoot without using web.xml ?
web.xml Sample :
<servlet>
<servlet-name>BotDetect Captcha</servlet-name>
<servlet class>com.captcha.botdetect.web.servlet.CaptchaServlet</servlet-
class>
</servlet>
<servlet-mapping>
<servlet-name>BotDetect Captcha</servlet-name>
<url-pattern>/botdetectcaptcha</url-pattern>
</servlet-mapping>