自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(15)
  • 资源 (16)
  • 问答 (6)
  • 收藏
  • 关注

翻译 解析maven2的配置文件之一(settings.xml)

<br /><!-- /* Font Definitions */ @font-face {font-family:Courier; panose-1:2 7 4 9 2 2 5 2 4 4; mso-font-alt:"Courier New"; mso-font-charset:0; mso-generic-font-family:modern; mso-font-format:other; mso-font-pitch:fixed; mso-font-sig

2010-06-28 18:01:00 2277 1

转载 tomcat5 的管理功能

<br />tomcat5.5的管理功能非常强,只要你配置好了tomcat-user.xml.<br /><br />主要是增加一个具有系统管理权限的用户,比如增加一个用户名和密码都是suxiaoyong的用户,只需要在在最后一行增加<br /><br />代码<user username="suxiaoyong" password="suxiaoyong" roles="admin,manager"/><br /><br /><br />其他的用户都可以删掉了<br /><br />

2010-06-28 11:22:00 1607

原创 Failed to execute goal org.codehaus.mojo:tomcat-maven-plugin:1.0:deploy

应用tomcat-maven-plugin将maven项目部署在tomcat中时创建失败:*************************************************[INFO]  --- tomcat-maven-plugin:1.0:deploy (default-cli) @ ssh ---[INFO] Deploying war to http://localhost:8080/  [INFO] -------------------------------------

2010-06-28 11:18:00 25901 1

转载 备忘-tomcat-maven-plugin的使用

环境:Ubuntu 8.10, tomcat6, mave2maven2有一个把web应用部署到tomcat下的插件 tomcat-maven-plugin , 我们可以使用这个插件把web应用一键式的部署到一个远程的tomcat中。插件的url: http://mojo.codehaus.org/tomcat-maven-plugin/1、要打开tomcat的manager功能这里要注意的问题是,如果你的web应用使用了虚拟主机,如www.test.com,那么你

2010-06-25 14:20:00 10937 3

转载 maven-tomcat-plugin的用法

maven-tomcat-plugin让maven与tomcat配合得很好。它可以把应用部署到Tomcat服务器,也可以把tomcat作为内嵌服务器启动,就像jetty一样。使用JPDA启动tomcat的远程调试功能。这样就能与eclipse配合起来,轻松地实现调试。而且具有tomcat的热部署功能。 具体做法如下:1 在pom.xml文件中配置maven-tomcat-plugin插件。Xml代码 org.codehaus.mojotomcat-maven-pluginorg.co

2010-06-25 11:58:00 9895 2

转载 Maven +Tomcat+m2eclipse的热部署(hot deploy)

<br />软件版本:maven 2.2 tomcat 6.0,Eclipse 3.4 <br />首先是建立环境,tomcat、maven、m2eclipse都不说了,这不配好,剩下的你也别看了。都准备好了,那我们就一步一步的开始了。 管理自己的tomcat.<br />到tomcat的安装目录中,F:/J2EE/apache-tomcat-6.0.24/conf在其中增加一个用户定义,默认是没有用户的,结果如下: <br /> view sourceprint?1<tomcat-

2010-06-25 11:37:00 4718

原创 运行maven install命令时出现错误(BUILD FAILURE)

创建了一个struts与spring集成的项目,运行run as—>maven install时出现以下错误:*******************************************[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.0.2:compile (default-compile) on project ssh: Compilation failureUnable to l

2010-06-13 13:42:00 41675 1

原创 解决安装 maven for eclipse插件后,eclipse启动时警告

<br />在eclipse中安装了m2eclipse(maven插件)<br />在安装后,出现下列警告:<br />*************************************<br /><br />The Maven Integration requires that Eclipse be running in a JDK, <br />because a number of Maven core plugins are using jars from the JDK.<br /><

2010-06-12 17:22:00 2552 1

原创 在MyEclipse6.0中安装m2eclipse插件

     刚刚开始学习maven的时候,为了避免安装插件的麻烦(因为看maven权威指南上说在安装m2eclipse之前需要安装一系列的其他插件),就直接安装了MyEclipse8.0,它是自带maven的,可使用了一段时间后,问题就来了,在创建maven项目的时候总是报错,archetype为webapp和struts2与spring集成的项目都不能够正确的创建,很是让人郁闷— —!!怎么先天集成好的插件还这么不好用啊,因为对maven学习的还不是很深入,出现了诸多的问题也不知如何解决,还是回过头来安装插

2010-06-11 18:21:00 4223

原创 使用maven2搭建SSH框架

<br />1.创建一个maven项目(在eclipse 中通过m2eclipse创建或者用mvn archetype:genetate命令创建)。<br /><br />2.添加spring,hibernate,struts2的依赖包,我的pom.xml如下:<br /><br /><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance

2010-06-09 17:24:00 8602 1

原创 基于Tomcat5.0和Axis2开发Web Service代码详解

1.HelloWorld做了些什么?HelloWorld功能非常简单,在客户端输入你的姓名,本例中为ZJ。参数传递到服务器端后,经过处理将返回name+"HelloWorld!",本例中为ZJ HelloWorld! 2.服务器端文件HelloWorld.javaHelloWorld.javapackage sample; import org.apache.axiom.om.OMAbstractFactory;import org.apache.axiom.om.OMElement;import or

2010-06-07 11:39:00 567

转载 基于Tomcat5.0和Axis2开发Web Service应用实例

本文将介绍如何使用Tomcat5.0和Apache Axis2开发、部署及测试一个简单的Web Service应用。1.工作环境Eclipse 3.1.2+Lomboz+jdk1.5+ apache-tomcat-5.0.18+AXIS2:1.0(war版本和bin版本)在[url]http://ws.apache.org/axis2/download/1_0/download.cgi[/url]页面下,下载AXIS2的Binary Distribution url: [url]http

2010-06-07 10:36:00 587

转载 使用Axis2的底层API开发Web Service

本文是在理解官方指南的基础上,用实例实现Axis2提供的4种调用机制,并给出测试结果。1.使用Axis2的底层API开发Web Service Server端1.1创建一个WebService(取名为MyService)    在MyService中有两个operations,如下所示。public void ping(OMElement element){}//IN-ONLY模式。仅仅接收OMElement,并对其处理。public OMElement echo(OMElement

2010-06-07 10:26:00 1037

原创 myeclipse8.5安装axis2插件

<br />myeclipse8.5的安装目录中的dropin文件夹是专门用来存放插件的。<br />将Axis2_Codegen_Wizard_1.3.0和Axis2_Service_Archiver_1.3.0直接放在该目录下,<br />然后删除configuration文件夹下的org.eclipse.update文件夹,<br />重启MyEclipse即可看到Axis2 Wizards!

2010-06-04 14:17:00 3691 16

原创 MyEclipse8.5安装svn插件

<br />访问<br />http://subclipse.tigris.org/servlets/ProjectDocumentList?folderID=2240<br />下载SVN插件:site-1.6.10.zip<br />解压后将其全部文件拷贝至:D:/Program Files/Genuitec/MyEclipse 8.5/dropins(MyEclipse的安装目录)<br />重启MyEclipse即可出现SVN!

2010-06-04 13:20:00 2022

sql性能监控工具

sql性能监控 sqsxfree

2016-08-29

大型分布式网站架构设计与实践.带目录书签.完整版

一、面向服务的体系架构(SOA) 二、分布式系统基础设施 三、互联网安全架构 四、系统稳定性 五、数据分析

2016-07-05

Programming Web Services with XML-RPC.pdf

As the book at hand, Programming Web Services with XML-RPC, explains so well, XML-RPC is XML over HTTP, and a great way to develop Web Services.

2010-05-13

Axis+webservice+开发.pdf

If you'd like to learn how to create web services (in particular, using Apache Axis) and make some sense of various standards like SOAP, WSDL, JAXRPC, SOAP with attachments, WS-Security, XML Encryption and XML Signature, then this book is for you.

2010-05-13

webservice(axis1)开发指南

webservice简介、axis的使用、WSDD的高级特性、axis常用命令和调试工具的使用

2010-05-13

SmartUpload文件上传小例子

这是我用SmartUpload组件写的一个文件上传的小例子,解压缩后可直接导入到MyEclipse(Eclipse)中运行。这肯定不是文件上传的最好方案,仅供有兴趣的朋友们学习参考!

2010-04-14

flex嵌入到jsp中

将flex嵌入到jsp中(web 工程)所需的jar包:flex-bootstrap-jsp.jar/flex-bootstrap.jar/flex-webtier-jsp.jar/flex-webtier.jar

2010-04-13

跨frame无限级联菜单插件menuG5

跨iframe显示 无限级 自定义样式 漂亮实用

2010-03-10

dive into python(pdf 中文)

不像Python语言入门等资料,不是从基础知识谈起,而是从程序中谈基础,不枯燥,让人有兴趣看下去。(纯属个人体会)

2010-02-01

Python深入学习(程序开发)

介绍面向对象编程、网络、web开发、图形界面和其他重要主题。

2010-01-20

python语言入门

本书涵盖了Python语言的精华,主要集中于核心概念,是一本入门教程,同时也是更高级、更复杂课程的铺路石。

2010-01-20

W3C(网页编程html+xhtml+htmldom+css+javascript+tcpip)

css基础、高级、实例;html基础教程、高级教程、实例、参考手册;HTML DOM:DOM简介、DOM实例、DOM对象;XHTML教程、XHTML参考手册;JavaScript:基础、高级、对象、实例、参考手册;TCP/IP教程

2010-01-12

ibatis学习资料大全

学习ibatis的资源包,英文版ibatis in action/ibatis学习指南/examples,希望其中有适合你的学习文档!

2010-01-11

struts2资源打包(struts2 in action、文档、教程)

短时间内学会struts2,深入浅出struts2帮助您认识struts2与struts1的不同及优点,struts2教程使您快速应用struts2(源码+注解),struts2 in action让您精通struts2.

2009-12-31

ext中文API+ sample.chm实例

欢迎来到 Ext 文档中心。您可以通过点击左边树形菜单里面的API或例子来学习如何使用 Ext。 如果您需要更多进一步的帮助,只需轻轻点击此处:官方论坛。

2009-11-19

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除