SpringMVC基本框架_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > SpringMVC基本框架

SpringMVC基本框架

 2015/3/21 12:55:53  Reverie夜  程序员俱乐部  我要评论(0)
  • 摘要:基本结构:EINS、配置web.xml:<servlet><servlet-name>springmvc</servlet-name><servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class><init-param><param-name>contextConfigLocation</param
  • 标签:MVC Spring

基本结构:


EINS、配置web.xml:

?

class="xml">        <servlet>
		<servlet-name>springmvc</servlet-name>
		<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
		<init-param>
			<param-name>contextConfigLocation</param-name>
			<param-value>/WEB-INF/applicationContext.xml,classpath*:applicationContext.xml</param-value>
		</init-param>
	</servlet>
	
	<servlet-mapping>
		<servlet-name>springmvc</servlet-name>
		<url-pattern>*.yy</url-pattern>
	</servlet-mapping>

?

ZWEI、配置applicationContext.xml:

?

?

        <bean id="handlerMapping" class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter"></bean>
	
	<!-- 定义视图解析器ViewResolver -->
	<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
		<property name="prefix" value="/WEB-INF/"></property>
		<property name="suffix" value=".jsp"></property>
	</bean>

	<!-- 路径可以指定 -->
	<context:component-scan base-package="./"/>

?

DREI、写两个控制类:

@Controller
@Scope("prototype")
public class Controller2 {
	
	@RequestMapping("/hello2.yy")
	public String execute(){
		return "jsp/ttt";
	}
}
@Controller
@Scope("prototype")
public class MyController{
	
	@RequestMapping("/hello.yy")
	public String execute(Model model){
		model.addAttribute("msg","夜月");
		return "jsp/hello";
	}
	
}

?

VIER、访问:

简单的测试↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓

<a href="hello2.yy">This is my JSP page. </a><br>

?

 <form action="hello.yy" method="post">
    	<input type="submit">
    </form>
?

?



??(????)


?

?

?

  • 大小: 16.1 KB
  • 大小: 19.3 KB
  • 大小: 17.8 KB
  • 查看图片附件
上一篇: 感悟--(走过2014来到2015) 下一篇: 没有下一篇了!
发表评论
用户名: 匿名