- 浏览: 2559 次
- 性别:
- 来自: 杭州
最新评论
文章列表
Spring MVC数据绑定为请求串
- 博客分类:
- Spring MVC
POST请求调用SpringMVC的控制方法,URL后面跟有请求串同时请求体里面有数据
@RequestMapping(value = "xxxxx", method = RequestMethod.POST)
@ResponseBody
public BaseRespEntity xxxxx(@RequestBody String jsonText, HttpServletRequest request)
调用之前需要对请求头进行设置,需要将content-type设置为application/json,如果不设置的话,会将请求串绑定到jsonTe ...
var winWidth;
// 获取窗口宽度
if (window.innerWidth)
winWidth = window.innerWidth;
else if ((document.body) && (document.body.clientWidth))
winWidth = document.body.clientWidth;
// 获取窗口高度
// 通过深入 Document 内部对 body 进行检测,获取窗口大小
if (document.documentElement && document.documentElement ...
<style type="text/css">
* {
margin: 0px;
padding: 0px;
}
.common {
width: 150px;
height: 100%;
line-height: 53px;
background-color: gray;
display:inline-block;
margin-right: 10px;
border-radius: 5px;
background-image:
url("${pageContext.request.contextPath}/imag ...
ActiveMQ鉴权-权限验证
- 博客分类:
- JMS
AuthenticationPlugin : 用户登录连接插件
AuthenticationBroker : 怎样验证的具体实现
AuthorizationPlugin : 授权插件
AuthorizationBroker : 怎样授权的具体实现
ActiveMQ需要在配置文件activemq.xml中配置安装插件,验证插件AuthenticationPlugin 和授权插件AuthorizationPlugin 可选!
借鉴资源:
资源链接
tomcat https配置以及生成
- 博客分类:
- https
1、tomcat相关配置
<Connector port="443" protocol="HTTP/1.1" SSLEnabled="true"
maxThreads="150" scheme="https" secure="true"
clientAuth="false" keystoreFile="D:/Java/apache-tomcat-7.0.62/conf/10.20.134.22.keystor ...