<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>红颜丽人JavaEE API学习 &#187; 红颜丽人</title>
	<atom:link href="http://www.hongyanliren.com/category/java%e7%a8%8b%e5%ba%8f%e5%bc%80%e5%8f%91/javaee-api%e5%ad%a6%e4%b9%a0/feed" rel="self" type="application/rss+xml" />
	<link>http://www.hongyanliren.com</link>
	<description>追求技术就像追求#$！不抛弃，不放弃！</description>
	<lastBuildDate>Thu, 16 Mar 2023 07:48:39 +0000</lastBuildDate>
	<language>zh-CN</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.2</generator>
		<item>
		<title>Tomcat installation at this directory is version 9.0.0.M26. A Tomcat 8.0 installation is expect</title>
		<link>http://www.hongyanliren.com/2018m02/39134.html</link>
		<comments>http://www.hongyanliren.com/2018m02/39134.html#comments</comments>
		<pubDate>Wed, 14 Feb 2018 11:54:56 +0000</pubDate>
		<dc:creator>Quan</dc:creator>
				<category><![CDATA[JavaEE API学习]]></category>

		<guid isPermaLink="false">http://www.hongyanliren.com/?p=39134</guid>
		<description><![CDATA[<h1>Tomcat installation at this directory is version 9.0.0.M26. A Tomcat 8.0 installation is expect</h1>
tomcate:apache-tomcat-9.0.0.M26

eclipse:Version: L[......]<p class='read-more'><a href='http://www.hongyanliren.com/2018m02/39134.html'>Read more</a></p>]]></description>
		<wfw:commentRss>http://www.hongyanliren.com/2018m02/39134.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Servlet是如何实现MVC的 .</title>
		<link>http://www.hongyanliren.com/2016m03/35894.html</link>
		<comments>http://www.hongyanliren.com/2016m03/35894.html#comments</comments>
		<pubDate>Wed, 16 Mar 2016 08:52:00 +0000</pubDate>
		<dc:creator>Quan</dc:creator>
				<category><![CDATA[JavaEE API学习]]></category>

		<guid isPermaLink="false">http://www.hongyanliren.com/?p=35894</guid>
		<description><![CDATA[<div>
<h1><a href="http://blog.csdn.net/laner0515/article/details/11266673">Servlet是如何实现MVC的  </a></h1>
<div id="article_content">

Servlet是一种服务器端的编程语言，是J2EE中比较关键的组成部分，Servlet技术的推出，扩展了Java语言在服务器端开发的功能，巩固了Java语言在服务器端开发中的地位，而且现在使用非常广泛的JSP技术也是基于Servlet的原理.[......]</div></div><p class='read-more'><a href='http://www.hongyanliren.com/2016m03/35894.html'>Read more</a></p>]]></description>
		<wfw:commentRss>http://www.hongyanliren.com/2016m03/35894.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Redis缓存 配置</title>
		<link>http://www.hongyanliren.com/2015m06/33800.html</link>
		<comments>http://www.hongyanliren.com/2015m06/33800.html#comments</comments>
		<pubDate>Mon, 01 Jun 2015 03:01:37 +0000</pubDate>
		<dc:creator>Quan</dc:creator>
				<category><![CDATA[JavaEE API学习]]></category>

		<guid isPermaLink="false">http://www.hongyanliren.com/?p=33800</guid>
		<description><![CDATA[<span style="text-decoration: underline;"><span style="color: #0066cc;">Redis缓存</span></span>

Redis是一个key-value存储系统。和Memcached类似，它支持存储的value类型相对更多，包括string(字符串)、list(链表)、set(集合)、zset(sorted set --有序集合)和hash（哈希类型）。这些数据类型都支持push/pop、ad[......]<p class='read-more'><a href='http://www.hongyanliren.com/2015m06/33800.html'>Read more</a></p>]]></description>
		<wfw:commentRss>http://www.hongyanliren.com/2015m06/33800.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>javaweb本地缓存的使用</title>
		<link>http://www.hongyanliren.com/2015m06/33766.html</link>
		<comments>http://www.hongyanliren.com/2015m06/33766.html#comments</comments>
		<pubDate>Mon, 01 Jun 2015 02:58:09 +0000</pubDate>
		<dc:creator>Quan</dc:creator>
				<category><![CDATA[JavaEE API学习]]></category>

		<guid isPermaLink="false">http://www.hongyanliren.com/?p=33766</guid>
		<description><![CDATA[javaweb本地缓存的使用.

缓存对于提升系统性能效果显而易见，而且成本也比较低，深受程序员的青睐。

最简单的用法就是定义一个集合类，存储一些对象信息，下次使用时不需要从别的地方重新获取，而是直接在本地集合类查询即可。常用的是基于k-v 键值对Map系列

示例：

&#038;nbsp[......]<p class='read-more'><a href='http://www.hongyanliren.com/2015m06/33766.html'>Read more</a></p>]]></description>
		<wfw:commentRss>http://www.hongyanliren.com/2015m06/33766.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>java String StringBuffer和StringBuilder类使用</title>
		<link>http://www.hongyanliren.com/2015m01/29996.html</link>
		<comments>http://www.hongyanliren.com/2015m01/29996.html#comments</comments>
		<pubDate>Fri, 30 Jan 2015 06:58:13 +0000</pubDate>
		<dc:creator>Quan</dc:creator>
				<category><![CDATA[JavaEE API学习]]></category>

		<guid isPermaLink="false">http://www.hongyanliren.com/?p=29996</guid>
		<description><![CDATA[java String StringBuffer和StringBuilder类使用。

String StringBuffer和StringBuilder类

String类提供了大量的构造器来创建String对象，其中如下几个有特殊用途
String()：创建一个包含0个字符串序列的St[......]<p class='read-more'><a href='http://www.hongyanliren.com/2015m01/29996.html'>Read more</a></p>]]></description>
		<wfw:commentRss>http://www.hongyanliren.com/2015m01/29996.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>javaEE运行环境实例说明。</title>
		<link>http://www.hongyanliren.com/2014m12/26673.html</link>
		<comments>http://www.hongyanliren.com/2014m12/26673.html#comments</comments>
		<pubDate>Fri, 26 Dec 2014 05:20:02 +0000</pubDate>
		<dc:creator>Quan</dc:creator>
				<category><![CDATA[JavaEE API学习]]></category>

		<guid isPermaLink="false">http://www.hongyanliren.com/?p=26673</guid>
		<description><![CDATA[javaEE运行环境实例说明。

1.下载JDK，并配置环境变量JAVA_HOME，同时修改Path变量，添加英文分号;然后将%JAVA_HOME%/bin添加到Path变量值后面

2.下载并安装eclipse（如果准备下载包含eclipse版本的MyEclipse插件，这一步可以省略，直[......]<p class='read-more'><a href='http://www.hongyanliren.com/2014m12/26673.html'>Read more</a></p>]]></description>
		<wfw:commentRss>http://www.hongyanliren.com/2014m12/26673.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JDK CyclicBarrier简单解释</title>
		<link>http://www.hongyanliren.com/2014m02/3353.html</link>
		<comments>http://www.hongyanliren.com/2014m02/3353.html#comments</comments>
		<pubDate>Thu, 20 Feb 2014 06:00:27 +0000</pubDate>
		<dc:creator>Quan</dc:creator>
				<category><![CDATA[JavaEE API学习]]></category>

		<guid isPermaLink="false">http://www.hongyanliren.com/?p=3353</guid>
		<description><![CDATA[JDK CyclicBarrier简单解释以及相关实例介绍，CyclicBarrier是一个同步辅助类，允许一组线程相互等待，直到到达一个共同的barrier point。如果一组线程需要不定时地相互等待，这个时候就可以用到CyclicBarrier。CyclicBarrier之所以带“Cyclic[......]<p class='read-more'><a href='http://www.hongyanliren.com/2014m02/3353.html'>Read more</a></p>]]></description>
		<wfw:commentRss>http://www.hongyanliren.com/2014m02/3353.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>java怎么将Unicode编码转换为汉字实例</title>
		<link>http://www.hongyanliren.com/2013m08/955.html</link>
		<comments>http://www.hongyanliren.com/2013m08/955.html#comments</comments>
		<pubDate>Thu, 22 Aug 2013 12:33:43 +0000</pubDate>
		<dc:creator>Quan</dc:creator>
				<category><![CDATA[JavaEE API学习]]></category>

		<guid isPermaLink="false">http://www.hongyanliren.com/?p=955</guid>
		<description><![CDATA[<strong>java怎么将Unicode编码转换为汉字实例。</strong>

我们都知道<strong>Unicode</strong>是重要的编码方式，几乎全世界的字符都可以通过unicode表示，java程序那么怎么将Unicode编码转换为汉字呢？代码针对Java语言，函数传入汉字的Unicode编码字符串，返回相应的汉字字符串，具体代码如下：[......]<p class='read-more'><a href='http://www.hongyanliren.com/2013m08/955.html'>Read more</a></p>]]></description>
		<wfw:commentRss>http://www.hongyanliren.com/2013m08/955.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Servlet 3.0新特性中支持Annotation注解</title>
		<link>http://www.hongyanliren.com/2013m07/128.html</link>
		<comments>http://www.hongyanliren.com/2013m07/128.html#comments</comments>
		<pubDate>Thu, 04 Jul 2013 13:14:33 +0000</pubDate>
		<dc:creator>Quan</dc:creator>
				<category><![CDATA[JavaEE API学习]]></category>
		<category><![CDATA[Annotation]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[JavaEE]]></category>

		<guid isPermaLink="false">http://42.96.186.37/?p=128</guid>
		<description><![CDATA[Servlet、Filter、Listener无需在web.xml中进行配置，可以通过Annotation进行配置；
<h1 align="left">Annotation支持</h1>
<p align="left"><strong> </strong></p>

<h2 align="left">1.Servlet</h2>
<p align="left"><strong> </strong></p>
<p align="left">原本Servlet开发完后，必须在web.xml中配置如下代码：<strong></strong></p>
<p align="left"><strong> </strong></p>

<div>
<div>
<div><b>[html]</b> view pl[......]</div></div></div><p class='read-more'><a href='http://www.hongyanliren.com/2013m07/128.html'>Read more</a></p>]]></description>
		<wfw:commentRss>http://www.hongyanliren.com/2013m07/128.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
