- 浏览: 1431543 次
- 性别:
- 来自: 北京
最新评论
-
a98709474:
写的很详细,看完了,明白了这种概念了
数据库水平切分(拆库拆表)的实现原理解析(转) -
a98709474:
MYSQL分库分表总结 -
CatchU:
7年前的招聘要求,厉害厉害
面试要求 -
luozhixiong:
<table class="bbcode&qu ...
MYSQL分库分表总结 -
沈寅麟:
好用
freemarker格式化
文章列表
http://www.sk-typo3.de/index.php?id=345
System.out.println("rotocol: " + request.getProtocol());
System.out.println("Scheme: " + request.getScheme());
System.out.println("Server Name: " + request.getServerName());
System.out.println("Server Port: " + request.getServerPort());
System.out.println(& ...
1、查找表中多余的重复记录,重复记录是根据单个字段(product_id)来判断
select * from p_category_product
where product_id in (select product_id from p_category_product group by product_id having count(product_id) > 1) order by product_id,p_category_id
2、查找表中多余的重复记录(多个字段)
select * from p_category_product
where (produ ...
1、为什么要用apache+tomcat
将静态页面和动态页面分开处理,apache处理静态的页面,而把serverlet交给tomcat处理(apache可能也处理不了serverlet),这样可以提高web服务器的性能。apache在稳定性上也是强于tomcat的,他们两个的集成可以弥补tomcat许多先天配置的不足。例如最近的一个ip段过滤的需求要采用这种集成方案。因为tomcat的ip过滤达不到想要的效果,tomcat的ip过滤只能设置某个ip,而不能设置ip段,十分的不爽,逼着我把apache集成进来。
2、apache和tomcat是如何结合到一起的
他们之间用jakarta-to ...
http://www.blogjava.net/xmatthew/archive/2008/04/14/192450.html
一般的web server有两部分日志:
1:是运行中的日志,它主要记录运行的一些信息,尤其是一些异常错误日志信息
2:是访问日志信息,它记录的访问的时间,IP,访问的资料等相关信息。
现在我来和大家介绍一下利用tomcat产生的访问日志数据,我们能做哪些有效的分析数据?
首先是配置tomcat访问日志数据,默认情况下访问日志没有打开,配置的方式如下: 编辑 ${catalina}/conf/server.xml文件.
注:${catalina}是tomcat的安 ...
1:phpBB 最流行的开源论坛软件,phpBB能够通过mods设置,你能定制你的论坛。你想要详细了解 500个不同的mods,浏览这里:http://phpbb-fm.com/support/index_fm.php
2:Vanilla 是一个轻量级开源论坛,是MarkO’Sullivan 使用 PHP and MySQL 开发的. Vanilla 能够加载扩展,你同样能通过扩展定制你的论坛。http://vanillaforums.org/
3:YetAnotherForum.NET 是一个ASP.NET开源论坛,完全使用C# ASP.NET 和 Microsoft SQL Se ...
1:版本控制基本概念
1.1:Repository
1.3:Delta
1.5:Branch
2:version control
2.1:Release
2.2:Merge
3:Roles 哪些人会用
4:流行的SCM工具
5:服务器搭建
6:Repository Browser
引用C:\Documents and Settings\liuwentao>netstat -nao
引用C:\Documents and Settings\liuwentao>tskill 6152
80端口被占用(端口检查)
图中,可以看出,80端口都被PID(进程标识符)为:984的进程所占用。现在,只要知道PID为984的进程就可以解决了。
-----------------------
补充:
查某个端口:
netstat -aon|findstr "8082"
select v.product_id,v.version_id,v.name,v.status,p.id from product_version v
left join product p on v.product_id=p.id where v.product_id is not null and p.id is null
System.out.println("-------------------------");
Properties p = System.getProperties();
for (Enumeration e = p.propertyNames(); e.hasMoreElements();) {
String key = (String) e.nextElement();
System.out.println(key + ":" + p.getProperty(key));
}
System.out.println(& ...
引用
request.getRequestURI() /jqueryWeb/resources/request.jsp
request.getRequestURL() http://localhost:8080/jqueryWeb/resources/request.jsp
request.getContextPath()/jqueryWeb
request.getServletPath()/resources/request.jsp
注: jqueryWeb 为工程名 , resources为WebContext下的目录名
一.list
1:_index 与 _has_next
<#assign seq = ["winter", "spring", "summer", "autumn"]>
<#list seq as x>
${x_index + 1}. ${x}<#if x_has_next>,</#if>
</#list>
输出:
引用1. winter, 2. spring, 3. summer, 4. autumn
2:循环变量
<#assi ...
在模板中定义的变量有三种类型:
引用1:plain变量:可以在模板的任何地方访问,包括使用include指令插入的模板,使用assign指令创建和替换。
2:局部变量:在宏定义体中有效,使用local指令创建和替换。
3:循环变量:只能存在于指令的嵌套内容,由指令(如list)自动创建;宏的参数是局部变量,而不是循环变量
局部变量隐藏(而不是覆盖)同名的plain变量;循环变量隐藏同名的局部变量和plain变量
<#assign x = "plain">
1. ${x} <br>
宏开始<br>
<@test/>
...
1:如何调大VM parameters:
引用-Xmx256m