#spring jar#
commons-logging-1.1.1.jar
commons-logging-api-1.1.jar
org.springframework.asm-3.1.3.RELEASE.jar
org.springframework.beans-3.1.3.RELEASE.jar
org.springframework.context-3.1.3.RELEASE.jar
org.springframework.context.support-3.1.3.RELEASE.jar
org.springframework.core-3.1.3.RELEASE.jar
org.springframework.expression-3.1.3.RELEASE.jar
org.springframework.web-3.1.3.RELEASE.jar
org.springframework.web.servlet-3.1.3.RELEASE.jar
#eclipse 版本#
Eclipse Java EE IDE for Web Developers.
Version: Kepler Service Release 1
Build id: 20130919-0819
#项目步骤#
1 新建dynamic web project
2 修改web.xml(添加servlet javaServlet负责根据 URL的路径结构进行分析,而调用相应的JavaBean进行业务逻辑处理。)
<?xml version="1.0" encoding="UTF-8"?> <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5"> <display-name>abspring</display-name> <welcome-file-list> <welcome-file>index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp</welcome-file> <welcome-file>default.html</welcome-file> <welcome-file>default.htm</welcome-file> <welcome-file>default.jsp</welcome-file> </welcome-file-list> <servlet> <description>这是我的第一个Servlet</description> <display-name>mvc</display-name> <servlet-name>mvc</servlet-name> <!-- dispatcher --> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <init-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:mvc-servlet.xml</param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>mvc</servlet-name> <url-pattern>*.do</url-pattern> </servlet-mapping> <!-- <servlet> <description></description> <display-name>helloworld</display-name> <servlet-name>helloworld</servlet-name> <servlet-class>com.spring.mvc.learning.helloworld</servlet-class> </servlet> <servlet-mapping> <servlet-name>helloworld</servlet-name> <url-pattern>/helloworld</url-pattern> </servlet-mapping> --> </web-app>
3 在src中 spring的 配置xml(构建beans)
<?xml version="1.0" encoding="UTF-8"?> <!-- org.springframework.web.servlet.view.InternalResourceView --> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:context="http://www.springframework.org/schema/context" xmlns:util="http://www.springframework.org/schema/util" xmlns:p="http://www.springframework.org/schema/p" xmlns:cache="http://www.springframework.org/schema/cache" xmlns:jdbc="http://www.springframework.org/schema/jdbc" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.0.xsd http://www.springframework.org/schema/cache http://www.springframework.org/schema/cache/spring-cache.xsd http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-3.0.xsd http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd"> <context:component-scan base-package="com.spring.mvc.control"></context:component-scan> <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="prefix" value="/WEB-INF/jsp/"></property> <property name="suffix" value=".jsp"></property> </bean> </beans>
内部资源视图解析器的
前缀:就是http://localhost:8080/项目名称/ jsp
后缀:.jsp
4 新建 RequestMapping
@Controller
@RequestMapping("/xxxx")
package com.spring.mvc.control; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.servlet.ModelAndView; @Controller @RequestMapping("/goods") public class GoodControl { @RequestMapping("/add") public String addgoods() { return "add"; } @RequestMapping("/list") public ModelAndView listgoods(String uname,String idcard) { ModelAndView mav=new ModelAndView(); mav.addObject("uname",uname); mav.addObject("idcard",idcard); mav.setViewName("list"); return mav; } }
请求 :http://localhost:8080/项目名称/goods/add.do
5 新建内部资源
图 5 内部资源位置
add.jsp
<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>Insert title here</title> </head> <body> <form action="${pageContext.request.contextPath }/goods/list.do" method="post"> <table> <tr> <td>户名:</td> <td><input type="text" name="uname"/></td> </tr> <tr> <td>身份证:</td> <td><input type="text" name="idcard"/></td> </tr> <tr> <td></td> <td><input type="submit" value="提交"/></td> </tr> </table> </form> </body> </html>
list.jsp
<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>Insert title here</title> </head> <body> Hi,How are you? ${uname} <br/> your idcard : ${idcard }<br/> real? </body> </html>
list.jsp 中 用到了 el表达式。
至此你可以调试你的web project了
相关推荐
将你的Spring项目部署到Tomcat上,然后启动服务器,就可以在浏览器中查看和测试你的Spring应用了。 总的来说,在Eclipse中配置Spring涉及项目创建、依赖管理、配置文件编写、Bean定义以及服务器配置等多个步骤。...
在本文中,我们将深入探讨如何在Eclipse 4.5.0版本中安装和使用Spring插件,以提升Java开发者的生产力。Eclipse是广泛使用的开源集成开发环境(IDE),而Spring框架是Java应用程序开发中的核心组件,尤其在企业级...
Eclipse RCP是一个用于构建桌面应用程序的框架,而Spring OSGi则提供了在OSGi环境中管理和部署Spring Bean的能力。 首先,我们需要理解Eclipse RCP。它是基于Java的,允许开发者创建可扩展、模块化的桌面应用。它...
本教程将详述如何使用Eclipse搭建Spring Cloud的步骤,以及涉及的相关知识点。 首先,我们需要确保Eclipse已经安装了Java开发工具(JDT)、Maven插件和Spring Tools Suite(STS)。JDT用于Java编程,Maven则帮助...
在Java开发环境中,Eclipse是一款广泛使用的集成开发环境(IDE),尤其在开发Web应用程序时,其功能强大且灵活。然而,默认情况下,Eclipse并不支持代码修改后的“热部署”,即当你修改了代码后,需要重新启动应用...
在Eclipse中搭建Spring框架是开发Java Web应用的常见步骤,Spring作为一个强大的轻量级开源框架,被广泛用于实现依赖注入、AOP(面向切面编程)、MVC(模型-视图-控制器)等特性。以下是一份详细的步骤指南,帮助你...
Eclipse热部署插件是开发过程中的一大神器,它极大地提升了开发效率,特别是在处理大型项目时。这个插件允许开发者在不需手动编译或重启应用服务器的情况下,实时地看到代码更改的效果,从而节省了大量的时间。 在...
- `org.springframework.osgi.source_2.0.5.v200805211800`:Eclipse for Spring 2.0加强了对OSGi(开放服务网关协议)的支持,使得开发者能在模块化环境中更好地管理和部署Spring应用,增强了可扩展性和灵活性。...
它在Eclipse的基础之上,提供了丰富的工具集,旨在简化Spring应用的构建、调试和部署过程。这款IDE尤其适用于使用Spring 2.0或2.5版本的开发者,尽管随着Spring框架的不断更新,Eclipse Spring IDE也进行了相应的...
综合来看,这个压缩包提供了Spring Tool Suite 3.7.3.RELEASE的Eclipse插件,用于在Eclipse 4.5.2环境下进行Spring框架的开发。用户可以通过解压并导入到Eclipse中来安装这些插件,从而得到增强的Spring开发环境。在...
4. **Spring Profile支持**:在STS中,你可以方便地切换和管理Spring应用的多个环境配置(profiles),这对于多环境部署和测试非常有用。 5. **Spring Roo支持**:Spring Roo是一个快速应用开发工具,STS集成了Roo...
【描述】:在使用Eclipse集成开发环境进行Spring应用开发时,安装Spring IDE插件是必不可少的步骤。Eclipse 3.5和3.6版本对插件的支持有所不同,但基本的安装流程是一致的。本文将详细指导如何在这些版本的Eclipse中...
- 在Eclipse中右键点击项目,选择Run As -> Run on Server,选择已配置的Tomcat服务器,Eclipse会自动编译、打包并部署项目到Tomcat。然后可以通过浏览器访问`http://localhost:8080/项目名/控制器方法`来查看效果...
这个插件集成了Spring框架的核心功能,如配置编辑器、代码辅助、测试工具等,使得在Eclipse中开发Spring应用变得更加直观和高效。 2. **Spring插件安装** 安装Eclipse for Spring插件可以通过Eclipse的内置软件...
4. **启动应用**:在Eclipse中,使用JRebel配置启动你的应用。此时,应用会使用JRebel的类加载机制,从而实现热部署。 5. **实时更新代码**:在开发过程中,当你保存代码更改后,JRebel会自动检测到这些变化,并...
2. **创建项目**:在Eclipse中新建一个Maven项目,并在pom.xml文件中引入Spring、SpringMVC、MyBatis以及它们的依赖,如Spring核心、Spring-webmvc、MyBatis核心、MySQL驱动等。 3. **配置Spring**:创建Spring的...
这些文件可能用于创建、更新或部署Eclipse插件,但要将它们与Eclipse 4.18的Spring插件关联起来,还需要进一步的解压和解析。如果你需要在本地环境中安装或更新Spring插件,通常不直接操作这些文件,而是通过上述的...