`
hetaoo
  • 浏览: 107729 次
社区版块
存档分类
最新评论
文章列表
    1.前期准备 http://axis.apache.org/axis2/java/core/download.cgi 下载  Binary distribution   axis2-1.7.1-bin.zip  WAR distribution   axis2-1.7.1-war.zip  Service Archive plugin for Eclipse  axis2-eclipse-service-plugin-1.7.1.zip  Code Generator plugin for Eclipse  axis2- ...
什么是Web Services? Web Services 是应用程序组件 Web Services 使用开放协议进行通信 Web Services 是独立的(self-contained)并可自我描述 Web Services 可通过使用UDDI来发现 Web Services 可被其他应用程序使用 XML 是 Web Services 的基础 它如何工作? 基础的 Web Services 平台是 XML + HTTP。 HTTP 协议是最常用的因特网协议。 XML 提供了一种可用于不同的平台和编程语言之间的语言。 Web services 平台的元 ...
 查看网上很多安装教程,试了好几次都没成功,最后下载了Jboss tools 压缩包离线安装,下载地址http://tools.jboss.org/downloads/overview.html   本次安装的版本为: eclipse版本:Eclipse Mars 4.5.2 jboss tools版本为:4.3.1.Final   把Jboss Tools解压到eclipse dropins目录下的jbossTools(这个自己定义)目录,其中包含两个目录:features和plugins。         <!--StartFragment --> ...
问题1 报错提示: 解决方案: MSC00001: Failed to start service jboss.web.deployment.default-host./: Caused by: java.lang.IllegalArgumentException: Child container with name already exists at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:804) at org.apache.ca ...
转至:http://saber5d.blog.163.com/blog/static/1279987782010119113746918/ type Exception reportmessage description The server encountered an internal error () that prevented it from fulfilling this request.exception   org.apache.jasper.JasperException: Unable to compile class for JSP: An error occurre ...
目前在jsp页面form action中使用${pageContext.request.contextPath }/servlet的写法,但是一直提示有错误,错误如下:javax.servlet.jsp.PageContext cannot be resolved to a type   缺少jsp-api.jar,导入这个包之后不报错了 jsp-api.jar位于tomcat-home/common/lib下   我的用的是maven管理的 所以导入的是 <dependency>     <groupId>javax.servlet</grou ...
今天在写springMVC RESTful CRUD 的delete操作将get请求经js转换成post请求最后由web.xml 过滤器转换成delete请求时,js这个静态资源被拦截   1. 为什么会有这样的问题: 优雅的 REST 风格的资源URL 不希望带 .html 或 .do 等后缀 若将 DispatcherServlet 请求映射配置为 /,  则 Spring MVC 将捕获 WEB 容器的所有请求, 包括静态资源的请求, SpringMVC 会将他们当成一个普通请求处理, 因找不到对应处理器将导致错误。 2. 解决: 在 SpringMVC 的配置文件中配置 <m ...
通过 SpringMVC 的表单标签可以实现将模型数据中的属性和 HTML 表单元素相绑定,以实现表单数据更便捷编辑和表单值的回显。   1.首先引入jsp form标签 <%@ taglib prefix="from" uri="http://www.springframework.org/tags/form"%>   2.开始写例子 <from:form action="emp" method="post" modelAttribute="employee"&g ...
严重: Neither BindingResult nor plain target object for bean name 'command' available as request attribute java.lang.IllegalStateException: Neither BindingResult nor plain target object for bean name 'command' available as request attribute at org.springframework.web.servlet.support.BindStatus.< ...
我们用Eclipse创建Maven结构的web项目的时候选择了Artifact Id为maven-artchetype-webapp,由于这个catalog比较老,用的servlet还是2.3的,而一般现在至少都是2.5,在Project Facets里面修改Dynamic web module为2.5的时候就会出现Cannot change version of project facet Dynamic web module to 2.5,如图: 其实在右边可以看到改到2.5需要的条件以及有冲突的facets,解决这个问题的步骤如下: 1.把Servlet改成2.5 ...
警告: No mapping found for HTTP request with URI [/springmvchello/testModelAndView] in DispatcherServlet with name 'springDispatcherServlet' 因为用maven管理的 最后 update maven object  解决了该问题
1.配置DispatcherServlet-servlet.xml <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/ ...
Global site tag (gtag.js) - Google Analytics