摘要: ref是工作类 method是工作类中要执行的方法 initial-delay是任务第一次被调用前的延时,单位毫秒 fixed-delay是上一个调用完成后再次调用的延时 fixed-rate是上一个调用开始后再次调用的延时(不用等待上一次调用完成) cron是表达式,表示在什么时候进行任务调度。 阅读全文
posted @ 2017-10-18 17:39 Mars亟 阅读(4440) 评论(0) 推荐(0) 编辑
摘要: pom.xml 导包 创建自己的序列化类,继承 com.fasterxml.jackson.databind.JsonSerializer<T> 抽象类 重写 serialize() 方法,对于 value 做出处理,就能得到想要的序列化后的值了 最后在实体类的 getter 方法上加上 @Json 阅读全文
posted @ 2017-10-18 17:21 Mars亟 阅读(605) 评论(0) 推荐(0) 编辑
摘要: 元注解: 元注解的作用就是负责注解其他注解。Java5.0定义了4个标准的meta-annotation类型,它们被用来提供对其它 annotation类型作说明。Java5.0定义的元注解: 1.@Target, 2.@Retention, 3.@Documented, 4.@Inherited 阅读全文
posted @ 2017-10-18 17:07 Mars亟 阅读(697) 评论(0) 推荐(0) 编辑
摘要: 转载地址:http://ln-ydc.iteye.com/blog/1330674 转载地址:http://ln-ydc.iteye.com/blog/1330674 内容概览: 如果希望 Tomcat 支持 Https,主要的工作是配置 SSL 协议 1.生成安全证书 2.配置tomcat 预备知 阅读全文
posted @ 2017-10-18 16:02 Mars亟 阅读(269) 评论(0) 推荐(0) 编辑
摘要: <Connector connectionTimeout="20000" port="8080" protocol="HTTP/1.1" redirectPort="8443" URIEncoding="UTF-8" useBodyEncodingForURI="true"/> <Engine de 阅读全文
posted @ 2017-10-18 15:57 Mars亟 阅读(2535) 评论(0) 推荐(0) 编辑
摘要: 打开 Tomcat 中的 web.xml,(tomcat/conf/web.xml) 添加如下代码: <error-page> <error-code>404</error-code> <location>/自定义 404 页面</location> </error-page> 注意:这里配置的路径 阅读全文
posted @ 2017-10-18 15:43 Mars亟 阅读(8813) 评论(0) 推荐(0) 编辑