首页 > 代码库 > springmvc框架第一帖HelloWorld
springmvc框架第一帖HelloWorld
1,导入所需jar包
2,配置web.xml,配置一个全局的servlet,将所有的请求都交给这个servlet处理
<servlet> <servlet-name>DispatcherServlet</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <!-- 配置DispatcherServlet的一个初始化参数:配置SpringMVC配置文件的位置和名称 如果不写这个参数,默认这个核心xml文件的是在/WEB-INF/<servlet-name>-servlet.xml, <servlet-name>表示的是这个servlet配置的<servlet-name></servlet-name>的值 --> <init-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:springmvc.xml</param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>DispatcherServlet</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping>
3,添加配置文件springmvc.xml到src目录下,根据web.xml文件的配置确定xml文件的位置的名字
<!-- 配置自动扫描的包 --> <context:component-scan base-package="com.lz.action"></context:component-scan> <!-- 配置视图解析器 --> <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="prefix" value="http://www.mamicode.com/WEB-INF/views/"></property> <property name="suffix" value="http://www.mamicode.com/.jsp"></property> </bean>
4,书写HelloWorld.java,使用注解的方式配置路径
package com.lz.action; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; @Controller public class HelloWorld { /** * 1.使用@RequestMapping注解来映射请求的URL * 2、返回值会通过视图解析器为实际的物理视图,对于InternalResourceViewResolver视图解析器,会做如下的解析: * prefix + return value + suffix * /WEB-INF/views/ + success + .jsp * * 。jsp * @return */ @RequestMapping("/helloWorld") public String hello(){ System.out.println("helloWorld"); return "success"; } }
5,在index.jsp中添加a链接
<a href="http://www.mamicode.com/helloWorld">HelloWorld</a>
6,在webRoot目录下创建views/success.jsp
<h2>成功跳转</h2>
点击连接成功跳转
springmvc框架第一帖HelloWorld
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。