-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
2 lines (2 loc) · 9.03 KB
/
index.html
File metadata and controls
2 lines (2 loc) · 9.03 KB
1
2
<!DOCTYPE html><html lang="zh-CN"><head><meta http-equiv="content-type" content="text/html; charset=utf-8"><meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport"><meta content="yes" name="apple-mobile-web-app-capable"><meta content="black-translucent" name="apple-mobile-web-app-status-bar-style"><meta content="telephone=no" name="format-detection"><meta name="description"><title>Quison's Blog</title><link rel="stylesheet" type="text/css" href="//cdn.bootcss.com/normalize/5.0.0/normalize.min.css"><link rel="stylesheet" type="text/css" href="//cdn.bootcss.com/pure/0.6.2/pure-min.css"><link rel="stylesheet" type="text/css" href="//cdn.bootcss.com/pure/0.6.2/grids-responsive-min.css"><link rel="stylesheet" type="text/css" href="/css/style.css?v=0.0.0"><link rel="stylesheet" href="//cdn.bootcss.com/font-awesome/4.7.0/css/font-awesome.min.css"><script type="text/javascript" src="//cdn.bootcss.com/jquery/3.1.1/jquery.min.js"></script><link rel="Shortcut Icon" type="image/x-icon" href="/favicon.ico"><link rel="apple-touch-icon" href="/apple-touch-icon.png"><link rel="apple-touch-icon-precomposed" href="/apple-touch-icon.png"></head><body><div class="body_container"><div id="header"><div class="site-name"><h1 class="hidden">Quison's Blog</h1><a id="logo" href="/.">Quison's Blog</a><p class="description"></p></div><div id="nav-menu"><a href="/." class="current"><i class="fa fa-home"> 首页</i></a><a href="/archives/"><i class="fa fa-archive"> 归档</i></a></div></div><div id="layout" class="pure-g"><div class="pure-u-1 pure-u-md-3-4"><div class="content_container"><div class="post"><h1 class="post-title"><a href="/2017/07/02/Servlet3-0-新特性详解(转)/">Servlet3.0 新特性详解(转)</a></h1><div class="post-meta">2017-07-02</div><a data-disqus-identifier="2017/07/02/Servlet3-0-新特性详解(转)/" href="/2017/07/02/Servlet3-0-新特性详解(转)/#disqus_thread" class="disqus-comment-count"></a><div class="post-content"><p><a href="https://www.ibm.com/developerworks/cn/java/j-lo-servlet30/" target="_blank" rel="external">原文链接</a></p>
<h2 id="1、Servlet3-0-新特性概述"><a href="#1、Servlet3-0-新特性概述" class="headerlink" title="1、Servlet3.0 新特性概述"></a>1、Servlet3.0 新特性概述</h2><p> Servlet3.0 作为Java EE 6 规范体系中的一员,随着Java EE 6规范一起发布。该版本在前一半(Servlet 2.5)的基础上提供了若干新特性用于简化Web应用的开发和部署。其中有几项特性的引入让开发者感到非常兴奋,同时也获得了Java社区的一片赞誉之声:</p></div><p class="readmore"><a href="/2017/07/02/Servlet3-0-新特性详解(转)/">阅读更多</a></p></div><div class="post"><h1 class="post-title"><a href="/2017/06/04/Java中枚举类型的简单使用/">Java中枚举类型的简单使用</a></h1><div class="post-meta">2017-06-04</div><a data-disqus-identifier="2017/06/04/Java中枚举类型的简单使用/" href="/2017/06/04/Java中枚举类型的简单使用/#disqus_thread" class="disqus-comment-count"></a><div class="post-content"><h2 id="1、概述"><a href="#1、概述" class="headerlink" title="1、概述"></a>1、概述</h2><p> 在Java语言中有一个<strong>“enum”</strong>关键字,它可以将一组具名的有限集合创建为一种新的类型,而这些具名的值可以作为常规程序组件使用,这是一种非常有用的功能。</p></div><p class="readmore"><a href="/2017/06/04/Java中枚举类型的简单使用/">阅读更多</a></p></div><div class="post"><h1 class="post-title"><a href="/2017/03/28/SpringMVC-Mybatis整合返回JSON数据出现的Could-not-write-content-No-serializer-found-for-class-错误解决办法/">SpringMVC + Mybatis整合返回JSON数据出现的Could not write content: No serializer found for class 错误解决办法</a></h1><div class="post-meta">2017-03-28</div><a data-disqus-identifier="2017/03/28/SpringMVC-Mybatis整合返回JSON数据出现的Could-not-write-content-No-serializer-found-for-class-错误解决办法/" href="/2017/03/28/SpringMVC-Mybatis整合返回JSON数据出现的Could-not-write-content-No-serializer-found-for-class-错误解决办法/#disqus_thread" class="disqus-comment-count"></a><div class="post-content"><h2 id="1、问题来源"><a href="#1、问题来源" class="headerlink" title="1、问题来源"></a>1、问题来源</h2><p> 如果实体类有一属性是其他实体类的类型,并且我们使用了<strong>延迟加载</strong>所有导致在处理该对象的时候有些属性不能被序列化才会报这个错。<br> 错误信息: com.fasterxml.jackson.databind.JsonMappingException: No serializer found for class org.apache.ibatis.executor.loader.javassist.JavassistProxyFactory\$EnhancedResultObjectProxyImpl and no properties discovered to create BeanSerializer (to avoid exception, disable SerializationFeature.FAIL_ON_EMPTY<em>BEANS) ) (through reference chain: java.util.HashMap[“XXX”]->java.util.ArrayList[0]->com.moguichun.model.XXX</em>\$\$_jvst552_0[“handler”])</div><p class="readmore"><a href="/2017/03/28/SpringMVC-Mybatis整合返回JSON数据出现的Could-not-write-content-No-serializer-found-for-class-错误解决办法/">阅读更多</a></p></div><div class="post"><h1 class="post-title"><a href="/2017/03/27/hello-world/">Hexo Usage</a></h1><div class="post-meta">2017-03-27</div><a data-disqus-identifier="2017/03/27/hello-world/" href="/2017/03/27/hello-world/#disqus_thread" class="disqus-comment-count"></a><div class="post-content"><p>Welcome to <a href="https://hexo.io/" target="_blank" rel="external">Hexo</a>! This is your very first post. Check <a href="https://hexo.io/docs/" target="_blank" rel="external">documentation</a> for more info. If you get any problems when using Hexo, you can find the answer in <a href="https://hexo.io/docs/troubleshooting.html" target="_blank" rel="external">troubleshooting</a> or you can ask me on <a href="https://github.com/hexojs/hexo/issues" target="_blank" rel="external">GitHub</a>.</p></div><p class="readmore"><a href="/2017/03/27/hello-world/">阅读更多</a></p></div><script id="dsq-count-scr" src="//moguichun.disqus.com/count.js" async></script></div></div><div class="pure-u-1-4 hidden_mid_and_down"><div id="sidebar"><div class="widget"><form action="//www.google.com/search" method="get" accept-charset="utf-8" target="_blank" class="search-form"><input type="text" name="q" maxlength="20" placeholder="Search"/><input type="hidden" name="sitesearch" value="http://moguichun.com"/></form></div><div class="widget"><div class="widget-title"><i class="fa fa-folder-o"> 分类</i></div></div><div class="widget"><div class="widget-title"><i class="fa fa-star-o"> 标签</i></div><div class="tagcloud"><a href="/tags/Java/" style="font-size: 15px;">Java</a> <a href="/tags/Java-Web/" style="font-size: 15px;">Java Web</a> <a href="/tags/问题解决/" style="font-size: 15px;">问题解决</a></div></div><div class="widget"><div class="widget-title"><i class="fa fa-file-o"> 最新文章</i></div><ul class="post-list"><li class="post-list-item"><a class="post-list-link" href="/2017/07/02/Servlet3-0-新特性详解(转)/">Servlet3.0 新特性详解(转)</a></li><li class="post-list-item"><a class="post-list-link" href="/2017/06/04/Java中枚举类型的简单使用/">Java中枚举类型的简单使用</a></li><li class="post-list-item"><a class="post-list-link" href="/2017/03/28/SpringMVC-Mybatis整合返回JSON数据出现的Could-not-write-content-No-serializer-found-for-class-错误解决办法/">SpringMVC + Mybatis整合返回JSON数据出现的Could not write content: No serializer found for class 错误解决办法</a></li><li class="post-list-item"><a class="post-list-link" href="/2017/03/27/hello-world/">Hexo Usage</a></li></ul></div><div class="widget"><div class="widget-title"><i class="fa fa-comment-o"> 最近评论</i></div><script type="text/javascript" src="//moguichun.disqus.com/recent_comments_widget.js?num_items=5&hide_avatars=1&avatar_size=32&excerpt_length=20&hide_mods=1"></script></div><div class="widget"><div class="widget-title"><i class="fa fa-external-link"> 友情链接</i></div></div></div></div><div class="pure-u-1 pure-u-md-3-4"><div id="footer">© <a href="/." rel="nofollow">Quison's Blog.</a> Powered by<a rel="nofollow" target="_blank" href="https://hexo.io"> Hexo.</a><a rel="nofollow" target="_blank" href="https://github.com/tufu9441/maupassant-hexo"> Theme</a> by<a rel="nofollow" target="_blank" href="https://github.com/pagecho"> Cho.</a></div></div></div><a id="rocket" href="#top" class="show"></a><script type="text/javascript" src="/js/totop.js?v=0.0.0" async></script><script type="text/javascript" src="//cdn.bootcss.com/fancybox/2.1.5/jquery.fancybox.pack.js" async></script><script type="text/javascript" src="/js/fancybox.js?v=0.0.0" async></script><link rel="stylesheet" type="text/css" href="/css/jquery.fancybox.css?v=0.0.0"><script type="text/javascript" src="/js/codeblock-resizer.js?v=0.0.0"></script><script type="text/javascript" src="/js/smartresize.js?v=0.0.0"></script></div></body></html>