`
shenjc2008
  • 浏览: 139769 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论
文章列表
官方网: http://lucene.apache.org/solr/ 下载地址: http://apache.etoak.com//lucene/solr/ 最新版本: For information about working with the most current (unofficial, unreleased) source code for Solr, please see the Solr Wiki: Nightly Builds http://wiki.apache.org/solr/NightlyBuilds Maven setting.xml添加: <rep ...
答:有DOM,SAX,STAX等  DOM:处理大型文件时其性能下降的非常厉害。这个问题是由DOM的树结构所造成的,这种结构占用的内存较多,而且DOM必须在解析文件之前把整个文档装入内存,适合对XML的随机访问 SAX:不现于DOM,SAX是事件驱动型的XML解析方式。它顺序读取XML文件,不需要一次全部装载整个文件。当遇到像文件开头,文档结束,或者标签开头与标签结束时,它会触发一个事件,用户通过在其回调事件中写入处理代码来处理XML文件,适合对XML的顺序访问   STAX:Streaming API for XML (StAX) 

Nexus私服搭建

1.下载 http://nexus.sonatype.org/downloads/ http://nexus.sonatype.org/downloads/nexus-oss-webapp-1.9.1.1-bundle.zip 2.安装和启动服务 到目录:D:\Development_Tools\nexus-oss-webapp-1.9.1.1-bundle\nexus-oss-webapp-1.9.1.1\bin\jsw\windows-x86-32 执行: InstallNexus.bat StartNexus.bat 如果启动报错: wrapper  | The nexus ser ...
<project> <profiles> <profile> <build> <defaultGoal>...</defaultGoal> <finalName>...</finalName> <resources>...</resources> <testResources>...</testResources> <plug ...
方法1: To skip running the tests for a particular project, set the skipTests property to true. <project>      [...]      <build>       <plugins>         <plugin>           <groupId>org.apache.maven.plugins</groupId>           <artifactId>maven-surefire-p ...
oracle技术官方网 http://www.oracle.com/technetwork/cn/index.html oracle技术官方网下载页面 http://www.oracle.com/technetwork/cn/indexes/downloads/index.html oracle技术官方网Instant Client下载列表页面 http://www.oracle.com/technetwork/cn/database/features/instant-client/index ...
1.下载地址: http://www.mongodb.org/downloads 如: http://downloads.mongodb.org/win32/mongodb-win32-i386-1.8.1.zip 2.启动服务: 解压,然后在根目录下创建文件夹 \data\db 在bin目录下执行: mongod -dbpath=D:\Development_Tools\mongodb-win32-i386-1.8.1\data\db 启动服务,不指定dbpath时,默认为\data\db(从磁盘根目录算起) 此时,可以通过http://localhost:28017/ 来访问web管理 ...
转载自:http://julianlali.blog.163.com/blog/static/58133643201023103035974/     (一) 将CheckStyle(http://maven.apache.org/plugins/maven-checkstyle-plugin/usage.html)、FindBugs(http://mojo.codehaus.org/findbugs-maven-plugin/2.0.1/usage.html)集成到Maven中,代码检查 ...

maven命令

The report will be generated when you execute: mvn site Explicitly Generate JXR Files The JXR files for the project's main sources will be generated using this command: mvn jxr:jxr To generate JXR files for the project's test sources, execute this command: mvn jxr:test-jxr
css优先级: div 1 .class 10 #id 100 style 1000 position: relative(相对定位,以自己为参照物移动 不脱离文档流) absolute(选取其最近的父级定位元素做参照物来定位,脱离文档流) fixed(以浏览器为参照物定位 脱离文档流)----不受浏览器分辨率设置等因素影响 static(没有特别的设定,遵循基本的定位规定) 下面是三个浏览器的兼容性收集.   第一种,是CSS HACK的方法     height:20px; /*For Firefox*/     *height:25px; /*For IE7 & ...
http://maven.apache.org/archetype/maven-archetype-plugin/ •archetype:create-from-project creates an archetype from an existing project. http://maven.apache.org/archetype/maven-archetype-plugin/create-from-project-mojo.html 生成archetype的命令代码如下(指定包名) @echo off set currentPath=%~dp0 set disk=%curre ...
一、Apache2.2.14\conf\httpd.conf 添加如下内容: #解决httpd: Could not reliably determine the server's fully qualified domain name ServerName localhost:80 Listen 80 ServerAdmin shenjc@foxmail.com #DocumentRoot必须设置,否则会报403错误 DocumentRoot "D:/Development_Tools/Apache2.2.14/htdocs" #DocumentRoot "D ...
1.Keep Components under 25K 保持单个内容小于25K http://developer.yahoo.com/performance/rules.html#under25 这条限制主要是因为iPhone不能缓存大于25K的文件。注意这里指的是解压缩后的大小。由于单纯gizp压缩可能达不要求,因此精简文件就显得十分重要。 查看更多信息,请参阅Wayne Shea和Tenni Theurer的文件“Performance Research, Part 5: iPhone Cacheability - Making it Stick”。 Performance Rese ...
1.Use a Content Delivery Network 使用内容分发网络 http://developer.yahoo.com/performance/rules.html#cdn 按地域布置网站内容的第一步并不是要尝试重新架构你的网站让他们在分发服务器上正常运行。根据应用的需求来改变网站结构,这可能会包 ...
1.Minimize HTTP Requests 尽量减少HTTP请求次数 http://developer.yahoo.com/performance/rules.html#num_http CSS Sprites是减少图像请求的有效方法。把所有的背景图像都放到一个图片文件中,然后通过CSS的background-image和 background-position属性来显示图片的不同部分; 图片地图是把多张图片整合到一张图片中。虽然文件的总体大小不会改变,但是可以减少HTTP请求次数。图片地图只有在图片的所有组成部分在页面中是紧挨在一起的时候才能使用,如导航栏。确定图片的坐标和可能会比 ...
Global site tag (gtag.js) - Google Analytics