dede采集过程中最麻烦的莫过于采集的正则过滤函数的编写。说实在的,dede在这点上和很多ASP CMS系统比如说动易等,采集的时候直接选择几个选项就可以了,简单的完成想过滤的东西。不过他们只局限于对文章内容的过滤不是很好。而DEDE却能对所有采集的字段进行过滤,功能上弥补了易用性的缺陷,期待柏拉图在后续版本中加上选择性过滤功能。
下面是在综合论坛上网友的各种正则的一个全集:
以下是常用过滤:
{dede:trim} {/dede:trim} // 过滤空格
{dede:trim}<a([^>]*)>([^<]*)</a>{/dede:trim}
{dede:trim}<script([^>]*)>([^>]*)</script>{/dede:trim}
{dede:trim}<div([^>]*)>([^<]*)</div>{/dede:trim}
{dede:trim}<IFRAME([^>]*)>([^>]*)</IFRAME>{/dede:trim}
下面是在综合论坛上网友的各种正则的一个全集:
以下是常用过滤:
{dede:trim} {/dede:trim} // 过滤空格
{dede:trim}<a([^>]*)>([^<]*)</a>{/dede:trim}
{dede:trim}<script([^>]*)>([^>]*)</script>{/dede:trim}
{dede:trim}<div([^>]*)>([^<]*)</div>{/dede:trim}
{dede:trim}<IFRAME([^>]*)>([^>]*)</IFRAME>{/dede:trim}
复制内容到剪贴板 程序代码
SEVERE: IOException while loading persisted sessions: java.io.EOFException
java.io.EOFException
严重: IOException while loading persisted sessions: java.io.EOFException
严重: Exception loading sessions from persistent storage
java.io.EOFException
严重: IOException while loading persisted sessions: java.io.EOFException
严重: Exception loading sessions from persistent storage
原因是tomcat对硬盘的session读取失败,彻底解决办法一下:将work下面的文件清空,主要是*.ser文件,或者只是删除掉session.ser即可以解决。
Tags: EOFException
if u use <img src="/test.gif">, u should put the test.gif in webapps/Root/ folder, so that, i suggest that to write <img src="<%=request.getContextPath()%>/test.gif">!
and if u wanna use the Root folder for ur webapp.
Just delete the Root folder. and write as before.
and if u wanna use the Root folder for ur webapp.
Just delete the Root folder. and write as before.
1 编辑server文件(x:\tomcat\conf\server.xml)2 只要在server.xml文件中加入如下代码即可:注意:(在server.xml中,此语句 <Host name="localhost" appBase="webapps"
unpackWARs="true" autoDeploy="true"
xmlValidation="false" xmlNamespaceAware="false">
后面添加如下语句:)
<!-- This is my site path,power by aaa -->
<Context path="/aaa" docBase="C:\Program Files\Apache Software Foundation\Tomcat 5.0\webapps\aaa" debug="0"
reloadable="true" crossContext="true">
</Context>
<!-- Site setup end -->3 因为在tomcat启动时要读取server文件的信息,所以更改server文件后,一定要重新启动tomcat。
unpackWARs="true" autoDeploy="true"
xmlValidation="false" xmlNamespaceAware="false">
后面添加如下语句:)
<!-- This is my site path,power by aaa -->
<Context path="/aaa" docBase="C:\Program Files\Apache Software Foundation\Tomcat 5.0\webapps\aaa" debug="0"
reloadable="true" crossContext="true">
</Context>
<!-- Site setup end -->3 因为在tomcat启动时要读取server文件的信息,所以更改server文件后,一定要重新启动tomcat。
Tags: TOMCAT