自定义配置文件的位置
<servlet>
<servlet-name>springDispatcherServlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath*:/META-INF/spring/*-web.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>springDispatcherServlet</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-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="control"></context:component-scan> //注解扫描加载
<mvc:annotation-driven /><!-- 开启注解 -->
<bean class="org.springframework.web.servlet.view.internalResourceViewResolver"> //视图解析器 这个事基于url解析器的一个扩展,在基础上加入了jstl 和jsp的支持
<property name="viewClass"></property>//这个有默认的不需要配置 ,加入了对jstl的支持,主要是为jsp工作的
<property name="prefix" value="/WEN-INF/pages/"></property>
<property name="suffix" value=".jsp"></property>
</bean>
</beans>
@Controller
public class HelloWorldController {
@RequestMapping("/start")
public String start(){
return "start";
}
}
@RequestMapping
可以修饰方法
可修饰类
@Controller
@RequestMapping("/test") //类级别的可以不写,但方法的一定要写
public class HelloWorldController {
@RequestMapping("/start") //相对于类级别的路径 ,访问的时候想访问上面的路径在添加下面的,例如/test/start
public String start(){
return "start";
}
}
spring 3.0 restful风格
http://localhost:8080/test/start.test?name=lisi
变成了
http://localhost:8080/test/start/lisi.test
通过PathVariable
@Controller
public class HelloWorldController {
@RequestMapping("/start/{name}")
public String start(@PathVariable String name){//取到name的值,名字一定要一致
System.out.println(name);
return "start";
}
}
访问地址
localhost:8080/test/start/aimi.test
编译的时候有debug和release模式,只有debug模式才保留name值
如果用release变量名称就没了
需要改成 public String start(@PathVariable("name") String name)
localhost:8080/test/start/aimi/20.test
@RequestMapping 不同的请求方法,映射不同的处理方法
@RequestMapping(value="/start",method=RequestMethod.GET)//当路径为start并且是get请求才会调用该方法
public String start(){//取到name的值,名字一定要一致
return "start";
}
@RequestMapping(value="/start",method=RequestMethod.POST)//当路径为start并且是post请求才会调用该方法
public String startpost(){//取到name的值,名字一定要一致
return "name";
}
@Controller
@RequestMapping("/test")
public class HelloWorldController {
@RequestMapping(method=RequestMethod.POST)//如果没有指定路径,就需要找类级别的路径(使用类级别的路径)
public void testVaLiable(){
}
}