package de.gdv.sp.configuration;
import org.springframework.boot.web.servlet.ServletRegistrationBean;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import com.captcha.botdetect.web.servlet.CaptchaServlet;
@Configuration
public class CaptchaConfiguration {
@Bean(name = "captchaServlet")
public ServletRegistrationBean captchaServlet() {
return new ServletRegistrationBean(new CaptchaServlet(), "/kontakt");
}
}
私たちの春のMVC /ブートproject.WhenでBotDetectキャプチャを実装しようとしている私は、私はいつも次の画面を取得します(web.xmlファイルなし)注釈でサーブレットを作成しようとしました:screenshot of http://localhost:8080/kontakt不明なコマンド-Spring MVC
さらに、このcaptchaのHTMLコードを書くと、次の結果が得られます。 Botdetect Captcha does not show picture
<botDetect:captcha id="exampleCaptcha"/>
<div class="validationDiv">
<input id="captchaCode" type="text" name="captchaCode"
value="${basicExample.captchaCode}"/>
<input type="submit" name="submit" value="Submit" />
<span class="correct">${basicExample.captchaCorrect}</span>
<span class="incorrect">${basicExample.captchaIncorrect}</span>
</div>
どのように私はこの問題を解決することができますか?
[BotDetectキャプチャホームページ] [3]