-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
130 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
package web; | ||
|
||
import com.google.code.kaptcha.Constants; | ||
import com.google.code.kaptcha.Producer; | ||
import org.springframework.beans.factory.annotation.Autowired; | ||
import org.springframework.stereotype.Controller; | ||
import org.springframework.web.bind.annotation.RequestMapping; | ||
import org.springframework.web.servlet.ModelAndView; | ||
|
||
import javax.imageio.ImageIO; | ||
import javax.servlet.ServletOutputStream; | ||
import javax.servlet.http.HttpServletRequest; | ||
import javax.servlet.http.HttpServletResponse; | ||
import java.awt.image.BufferedImage; | ||
|
||
/** | ||
* Created by xuweijie on 2017/3/8. | ||
* 生成验证码Controller. | ||
*/ | ||
@Controller | ||
public class CaptchaController { | ||
|
||
private Producer kaptchaProducer=null; | ||
|
||
@Autowired | ||
public void setCaptchaProducer(Producer kaptchaProducer) { | ||
this.kaptchaProducer = kaptchaProducer; | ||
} | ||
|
||
@RequestMapping("/kaptcha") | ||
public ModelAndView handleRequest(HttpServletRequest request, HttpServletResponse response) throws Exception{ | ||
response.setDateHeader("Expires",0); | ||
response.setHeader("Cache-Control", "no-store, no-cache, must-revalidate"); | ||
response.addHeader("Cache-Control", "post-check=0, pre-check=0"); | ||
response.setHeader("Pragma", "no-cache"); | ||
response.setContentType("image/jpeg"); | ||
String capText = kaptchaProducer.createText(); | ||
request.getSession().setAttribute(Constants.KAPTCHA_SESSION_KEY, capText); | ||
BufferedImage bi = kaptchaProducer.createImage(capText); | ||
ServletOutputStream out = response.getOutputStream(); | ||
ImageIO.write(bi, "jpg", out); | ||
try { | ||
out.flush(); | ||
} finally { | ||
out.close(); | ||
} | ||
return null; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<beans xmlns="http://www.springframework.org/schema/beans" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"> | ||
|
||
<bean id="defaultKaptcha" class="com.google.code.kaptcha.impl.DefaultKaptcha"> | ||
<property name="config"> | ||
<bean class="com.google.code.kaptcha.util.Config"> | ||
<constructor-arg> | ||
<props> | ||
<!-- 验证码宽度 --> | ||
<prop key="kaptcha.image.width">110</prop> | ||
<!-- 验证码高度 --> | ||
<prop key="kaptcha.image.height">50</prop> | ||
<!-- 生成验证码内容范围 --> | ||
<prop key="kaptcha.textproducer.char.string">0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ</prop> | ||
<!-- 验证码个数 --> | ||
<prop key="kaptcha.textproducer.char.length">4</prop> | ||
<!-- 是否有边框 --> | ||
<prop key="kaptcha.border">no</prop> | ||
<!-- 边框颜色 --> | ||
<prop key="kaptcha.border.color">105,179,90</prop> | ||
<!-- 边框厚度 --> | ||
<prop key="kaptcha.border.thickness">1</prop> | ||
<!-- 验证码字体颜色 --> | ||
<prop key="kaptcha.textproducer.font.color">black</prop> | ||
<!-- 验证码字体大小 --> | ||
<prop key="kaptcha.textproducer.font.size">30</prop> | ||
<!-- 验证码所属字体样式 --> | ||
<prop key="kaptcha.textproducer.font.names">楷体</prop> | ||
<!-- 干扰线颜色 --> | ||
<prop key="kaptcha.noise.color">black</prop> | ||
<!-- 验证码文本字符间距 --> | ||
<prop key="kaptcha.textproducer.char.space">3</prop> | ||
<!-- 图片样式 :阴影--> | ||
<prop key="kaptcha.obscurificator.impl">com.google.code.kaptcha.impl.ShadowGimpy</prop> | ||
</props> | ||
</constructor-arg> | ||
</bean> | ||
</property> | ||
</bean> | ||
|
||
</beans> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters