thymeleaf: th:src="@{}"

	<div class="col-xs-6">
							<a href="javascript:void(0);" title="点击更换验证码">
                                <img th:src="@{captcha/captchaImage?type=math}" class="imgcode" width="85%"/>
                                <img th:src="@{captcha/captchaImage(type=math)}" class="imgcode" width="85%"/>
							</a>
						</div>

两个img请求参数都是type=math,
@{}中不能使用type=‘math’,如果这样写,则后台获得的type参数的值,带有‘’单引号 ,如 ‘math’

你可能感兴趣的:(thymeleaf)