`
太阳神喻
  • 浏览: 106766 次
  • 性别: Icon_minigender_1
  • 来自: 武汉
社区版块
存档分类
最新评论

基于spring3.0.5 mvc 简单用户管理实例

阅读更多

    临时应急做了两个月的ASP.NET,终于又回到Java上来了,还是Java感觉亲切啊。马上要开发一个新的项目,最近感觉spring mvc势头比较猛,就了解了一下,以前觉得spring mvc用起来较麻烦,所以一直用struts2,但了解了一下spring3 mvc,一下子就喜欢上了它,下个项目决定就用它了,RESTful URL、几乎0配置、不需要实现任何接口或继承任何类的Controller、方法级别的拦截,一个方法对应一个url、灵活的方法参数和返回值、多种view、处理ajax的请求更是方便...

   下面的小例子用了spring mvc和hibernate,只是简单的用户增删改查,没有用ajax,ajax的版本在这里:Spring3 MVC + jQuery easyUI 做的ajax版本用户管理(http://www.iteye.com/topic/1081739),给和我一样准备用spring mvc的朋友参考一下吧。jar包如图:

  

web.xml如下:
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 
	http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
	
	<!-- 默认的spring配置文件是在WEB-INF下的applicationContext.xml -->
	<listener>
		<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
	</listener>

	<filter>
		<filter-name>Set Character Encoding</filter-name>
		<filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
		<init-param>
			<param-name>encoding</param-name>
			<param-value>UTF-8</param-value>
		</init-param>
		<init-param>
			<param-name>forceEncoding</param-name>
			<param-value>true</param-value><!-- 强制进行转码 -->
		</init-param>
	</filter>
	
	<filter-mapping>
		<filter-name>Set Character Encoding</filter-name>
		<url-pattern>/*</url-pattern>
	</filter-mapping>
	
	<!-- 默认所对应的配置文件是WEB-INF下的{servlet-name}-servlet.xml,这里便是:spring3-servlet.xml -->
	<servlet>
		<servlet-name>spring3</servlet-name>
		<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
		<load-on-startup>1</load-on-startup>
	</servlet>

	<servlet-mapping>
		<servlet-name>spring3</servlet-name>
		<!-- 这里可以用 / 但不能用 /* ,拦截了所有请求会导致静态资源无法访问,所以要在spring3-servlet.xml中配置mvc:resources -->
		<url-pattern>/</url-pattern>
	</servlet-mapping>

	<welcome-file-list>
		<welcome-file>index.jsp</welcome-file>
	</welcome-file-list>
</web-app>
 
 applicationContext.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:aop="http://www.springframework.org/schema/aop"
	xmlns:tx="http://www.springframework.org/schema/tx"
	xmlns:context="http://www.springframework.org/schema/context"
	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/context 
          http://www.springframework.org/schema/context/spring-context-3.0.xsd 
          http://www.springframework.org/schema/aop 
          http://www.springframework.org/schema/aop/spring-aop-3.0.xsd" default-autowire="byName">
		<!-- 注意上面的default-autowire="byName",如果没有这个声明那么HibernateDaoSupport中的sessionFactory不会被注入 -->
		<!-- 约定优于配置,约定优于配置 -->
	<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
		<property name="driverClassName" value="com.mysql.jdbc.Driver"></property>
		<property name="url" value="jdbc:mysql://127.0.0.1:3306/test"></property>
		<property name="username" value="root"></property>
		<property name="password" value="root"></property>
	</bean>
	<bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
		<property name="dataSource" ref="dataSource"/>
       <property name="mappingDirectoryLocations">
         <list><!-- 这里直接映射的pojo类所在的包,简单方便不用没次加一个pojo类都需要到这里来添加 -->
            <value>classpath:com/fsj/spring/model</value>
         </list>
       </property>
		<property name="hibernateProperties">
			<props>
				<prop key="hibernate.dialect">
					org.hibernate.dialect.MySQLDialect
				</prop>
				<prop key="hibernate.show_sql">
					true
				</prop>
			</props>
		</property>
	</bean>
	
	<!-- 自动扫描组件,这里要把web下面的 controller去除,他们是在spring3-servlet.xml中配置的,如果不去除会影响事务管理的。-->
	<context:component-scan base-package="com.fsj.spring">
		<context:exclude-filter type="regex" expression="com.fsj.spring.web.*"/>
	</context:component-scan>
	
	<!-- 下面是配置声明式事务管理的,个人感觉比用注解管理事务要简单方便 -->
	<bean id="txManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
		<property name="sessionFactory" ref="sessionFactory"></property>
	</bean>

	<aop:config>
		<aop:advisor pointcut="execution(* com.fsj.spring.service.*Service.*(..))" advice-ref="txAdvice"/>
	</aop:config>

	<tx:advice id="txAdvice" transaction-manager="txManager">
		<tx:attributes>
			<tx:method name="get*" read-only="true"/>
			<tx:method name="query*" read-only="true"/>
			<tx:method name="find*" read-only="true"/>
			<tx:method name="load*" read-only="true"/>
			<tx:method name="*" rollback-for="Exception"/>
		</tx:attributes>
	</tx:advice>
	
	
</beans>
 
 spring3-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:p="http://www.springframework.org/schema/p"
	xmlns:context="http://www.springframework.org/schema/context"
	xmlns:mvc="http://www.springframework.org/schema/mvc"
	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
           http://www.springframework.org/schema/mvc 
           http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd" default-autowire="byName">
	<!-- 约定优于配置,约定优于配置 -->
	
	<!-- 配置静态资源,直接映射到对应的文件夹,不被DispatcherServlet处理,3.04新增功能,需要重新设置spring-mvc-3.0.xsd -->
	<mvc:resources mapping="/img/**" location="/img/"/>
	<mvc:resources mapping="/js/**" location="/js/"/>
	<mvc:resources mapping="/css/**" location="/css/"/>

	<!-- 扫描所有的controller -->
	<context:component-scan base-package="com.fsj.spring.web" />

	<!-- InternalResourceViewResolver默认的就是JstlView所以这里就不用配置viewClass了 -->
	<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
		<property name="prefix" value="/WEB-INF/view/"></property>
		<property name="suffix" value=".jsp"></property>
	</bean>
	
	<!-- 启用基于注解的处理器映射,添加拦截器,类级别的处理器映射 -->
	<bean class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping">
        <property name="interceptors">
            <list>
                <bean class="com.fsj.spring.util.MyHandlerInterceptor"/>
            </list>
        </property>
	</bean>
	
	<!-- 
	配置一个基于注解的定制的WebBindingInitializer,解决日期转换问题,方法级别的处理器映射,
	有人说该bean要放在context:component-scan前面,要不然不起作用,但我试的放后面也可以啊。
	-->
	<bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">
	    <property name="cacheSeconds" value="0" />
	    <property name="webBindingInitializer">
	        <bean class="com.fsj.spring.util.MyWebBinding" />
	    </property>
	</bean>
	
</beans> 
 
 log4j的就不贴出来了。
两个HelloWorldController如下:
package com.fsj.spring.web;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;

/*
 * 不需要实现任何接口,也不需要继承任何的类
 */
@Controller
public class HelloWorldController {

	/**
	 * 方法都可以接受的参数(参数数量和顺序没有限制): HttpServletRequest,HttpServletResponse,HttpSession(session必须是可用的) ,PrintWriter,Map,Model,@PathVariable(任意多个), @RequestParam(任意多个), @CookieValue (任意多个),@RequestHeader,Object(pojo对象) ,BindingResult等等
	 * 
	 * 返回值可以是:String(视图名),void(用于直接response),ModelAndView,Map ,Model,任意其它任意类型的对象(默认放入model中,名称即类型的首字母改成小写),视图名默认是请求路径
	 */
	@RequestMapping("/helloWorld")
	public ModelAndView helloWorld() {
		ModelAndView mav = new ModelAndView();
		mav.setViewName("login");
		mav.addObject("message", "Hello World!");
		return mav;
	}
}
 
package com.fsj.spring.web;

import java.util.List;
import javax.servlet.http.HttpServletRequest;

import org.apache.commons.lang.StringUtils;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import com.fsj.spring.model.TDept;
import com.fsj.spring.model.TUser;
import com.fsj.spring.service.IDeptService;
import com.fsj.spring.service.IUserService;
import com.fsj.spring.util.Constants;

@Controller
@RequestMapping("/user")
public class UserController {
	
	private IUserService userService;
	private IDeptService deptService;
	
	public IDeptService getDeptService() {
		return deptService;
	}

	public void setDeptService(IDeptService deptService) {
		this.deptService = deptService;
	}

	public IUserService getUserService() {
		return userService;
	}

	public void setUserService(IUserService userService) {
		this.userService = userService;
	}

	@RequestMapping(value="/login",method=RequestMethod.POST)
	public String login(@RequestParam String name,@RequestParam String password,Model model,HttpServletRequest request) throws Exception{
		TUser user1 = userService.getUserByName(name);
		if(user1 == null) {
			model.addAttribute("message", "用户不存在");
			return "login";
		}else if(password == null || !password.equals(user1.getPassword()) ){
			model.addAttribute("message", "密码错误");
			return "login";
		}else {
			request.getSession().setAttribute(Constants.USER_INFO_SESSION, user1);
			return "welcome";
		}
	}
	
	@RequestMapping(value="/login1",method=RequestMethod.POST)
	public String login1(TUser user,HttpServletRequest request,Model model) throws Exception{
		TUser user1 = userService.getUserByName(user.getName());
		if(user1 == null) {
			model.addAttribute("message", "用户不存在");
			return "login";
		}else if(user.getPassword() == null || !user.getPassword().equals(user1.getPassword()) ){
			model.addAttribute("message", "密码错误");
			return "login";
		}else {
			request.getSession().setAttribute(Constants.USER_INFO_SESSION, user1);
			return "welcome";
		}
	}
	
	@RequestMapping(value="/list")
	public String list(Model model,HttpServletRequest request) throws Exception {
		List<TUser> userList = userService.getUserList();
		model.addAttribute("userList", userList);
		List<TDept> deptList = deptService.getDeptList();
		model.addAttribute("deptList", deptList);
		if(StringUtils.isNotBlank(request.getParameter("resMess")) && StringUtils.isNotBlank(request.getParameter("opeMess"))) {
			model.addAttribute("message",setOperateMessage(request.getParameter("resMess"),request.getParameter("opeMess"),"用户"));
		}
		return "user/list";
	}

	private String setOperateMessage(String resMess,String opeMess,String modMess) {
		//TODO 以后可以和写日志结合在一起
		String ope = "";
		String res = "";
		if(Constants.OPERATE_TYPE_ADD.equals(opeMess)) {
			ope = "增加";
		}else if(Constants.OPERATE_TYPE_UPDATE.equals(opeMess)) {
			ope = "更新";
		}else if(Constants.OPERATE_TYPE_DELETE.equals(opeMess)) {
			ope = "删除";
		}
		
		if(Constants.RESULT_SUCCESS.equals(resMess)) {
			res = "成功";
		}else if(Constants.RESULT_FAILED.equals(resMess)) {
			res = "失败";
		}
		return ope + modMess + res;
	}
	
	/*
	 * 同样的请求路径 user/add 如果是get请求就转到增加页面去,如果是post请求就做add操作
	 */
	@RequestMapping(value="/add",method=RequestMethod.GET)
	public String toAdd(Model model) throws Exception{
		List<TDept> deptList = deptService.getDeptList();
		model.addAttribute("deptList", deptList);
		return "user/add";
	}
	@RequestMapping(value="/add",method=RequestMethod.POST)
	public String doAdd(TUser user,Model model) throws Exception{
		try {
			userService.addUser(user);
			model.addAttribute("resMess", Constants.RESULT_SUCCESS);
		} catch (Exception e) {
			e.printStackTrace();
			model.addAttribute("resMess", Constants.RESULT_FAILED);
			throw e;
		}
		model.addAttribute("opeMess", Constants.OPERATE_TYPE_ADD);
		
		//重定向,防止重复提交,当然这样不能完全解决重复提交的问题,只是简单处理一下,若要较好的防止重复提交可以结合token做,
		//以“/”开关,相对于当前项目根路径,不以“/”开关,相对于当前路径
		//return "redirect:/user/list"; 
		return "redirect:list"; 
	}
	
	/*
	 * Restful模式路径:
	 * 注意这里/update/{id}和@PathVariable("id")中id要一致,这样不管用debug模式还是release模式编译都没问题
	 * 也可以简写成@PathVariable int id,但这样只能以debug模式编译的时候正确,如果用release编译就不正确了,因为如果用release模式编译会把参数的名字改变的
	 * 一般IDE工具都是以debug模式编译的,javac是以release模式编译的
	 * 同样的请求路径 user/update 如果是get请求就转到增加页面去,如果是post请求就做update操作
	 */
	@RequestMapping(value="/update/{id}",method=RequestMethod.GET)
	public String toUpdate(@PathVariable("id") int id, Model model) throws Exception{
		model.addAttribute("user",userService.getUserById(id));
		model.addAttribute("deptList", deptService.getDeptList());
		return "user/update";
	}
	@RequestMapping(value="/update/{id}",method=RequestMethod.POST)
	public String doUpdate(@PathVariable("id") int id, TUser user,Model model) throws Exception{
		try {
			userService.updateUser(user);
			model.addAttribute("resMess", Constants.RESULT_SUCCESS);
		} catch (Exception e) {
			e.printStackTrace();
			model.addAttribute("resMess", Constants.RESULT_FAILED);
			throw e;
		}
		model.addAttribute("opeMess", Constants.OPERATE_TYPE_UPDATE);
		//return "redirect:../list"; 
		//重定向,防止重复提交,以“/”开关,相对于当前项目根路径,不以“/”开关,相对于当前路径
		return "redirect:/user/list"; 
	}
	
	@RequestMapping(value="/delete/{id}")
	public String delete(@PathVariable("id") int id,Model model)throws Exception{
		try {
			userService.deleteUser(id);
			model.addAttribute("resMess", Constants.RESULT_SUCCESS);
		} catch (Exception e) {
			e.printStackTrace();
			model.addAttribute("resMess", Constants.RESULT_FAILED);
			throw e;
		}
		model.addAttribute("opeMess", Constants.OPERATE_TYPE_DELETE);
		return "redirect:/user/list";//重定向
	}
}
 
 下面的例子中没有jar包,jar太大了超过10M了,请自己加jar包

 

 

 

  • 大小: 13.6 KB
分享到:
评论
27 楼 太阳神喻 2011-06-08  
matychen 写道
还有一点,在配置事务的时候,我配置在application.xml下面好像不成功,我配置在spring-mvc.xml里面就可以了。


具体可以参考
http://www.iteye.com/problems/51463


希望楼主加在二楼的注意里面~~

我试的是可以的啊,我刚才在Service层增加用户的时候故意抛出一个异常,事务是回滚的,没有提交,请注意Spring框架的事务基础架构代码默认地只在抛出运行时和unchecked exceptions时才标识事务回滚。 也就是说,当抛出一个 RuntimeException 或其子类例的实例时。(Errors 也一样 - 默认地 - 标识事务回滚。)从事务方法中抛出的Checked exceptions将不被标识进行事务回滚。
26 楼 太阳神喻 2011-06-08  
cuilji 写道
个人感觉无论大小应用,好像将配置分散到源代码中,确实不如维护一个独立的配置文件来的方便。只是大应用,大文件好像也不太好管理。

同感
25 楼 mienimaer 2011-06-08  
“一个方法对应一个url”,我想弱弱地问一下,如果在注解中,URL的值重复了,怎么办?
24 楼 huang_yong 2011-06-08  
<mvc:resources mapping="/img/**" location="/img/"/>
<mvc:resources mapping="/js/**" location="/js/"/>
<mvc:resources mapping="/css/**" location="/css/"/>

个人觉得以上这一段还不如在web.xml定义:

<servlet-mapping>
    <servlet-name>default</servlet-name>
    <url-pattern>/resources/*</url-pattern>
</servlet-mapping>

注意:将img、js、css放在resources目录下
23 楼 aa87963014 2011-06-08  
我只想知道 如何对付 重复提交
特别是 F5刷新提交!!! 重定向不靠谱!!!!

有没有什么良好的解决方案啊啊啊!
22 楼 matychen 2011-06-08  
还有一点,在配置事务的时候,我配置在application.xml下面好像不成功,我配置在spring-mvc.xml里面就可以了。


具体可以参考
http://www.iteye.com/problems/51463


希望楼主加在二楼的注意里面~~
21 楼 cuilji 2011-06-08  
个人感觉无论大小应用,好像将配置分散到源代码中,确实不如维护一个独立的配置文件来的方便。只是大应用,大文件好像也不太好管理。
20 楼 太阳神喻 2011-06-08  
george_space 写道
为什么几乎所有人都说spring mvc是0配置,或者“几乎0配置”?
难道注解不算是配置?

如果把path映射写在annotation中,就算是0配置,那目前所有的主流web框架都是0配置了。

所谓的0配置就是不需要写配置信息,一切都是按照约定来解析,不需要写xml或者annotation,spring mvc离这个目标还差很多呢,哪来的0配置?

呵呵,何必要这上面较真呢,不过是一种宣传罢了,管它什么0配置不0配置呢,好用不就行了 ,个人感觉annotation也有不方便的地方,不便于统一管理,不方便跟踪查找。
19 楼 太阳神喻 2011-06-08  
matychen 写道
引用


<!-- 启用基于注解的处理器映射,添加拦截器,类级别的处理器映射 --> 
    <bean class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping"> 
        <property name="interceptors"> 
            <list> 
                <bean class="com.fsj.spring.util.MyHandlerInterceptor"/> 
            </list> 
        </property> 
    </bean>


这个配置可以用mvc的标签配置更方便点,个人感觉
<!-- 针对类、方法级别的权限拦截器 -->
	<mvc:interceptors>
	<!-- 管理员的权限拦截器 -->
		<mvc:interceptor>
			<mvc:mapping path="/adminhome/*" />
			<mvc:mapping path="/roles/*" />
			<mvc:mapping path="/sysuser/*" />
			<mvc:mapping path="/record/*" />
			<mvc:mapping path="/deliver/*" />
			<mvc:mapping path="/sysmonitor/*" />
			<mvc:mapping path="/moduleconf/*" />
			<mvc:mapping path="/business/*" />
			<mvc:mapping path="/userapp/*" />
			<mvc:mapping path="/payment/*" />
			<bean class="com..web.interceptor.LoginInterceptor"></bean>
		</mvc:interceptor>
	<!-- 普通用户的权限拦截器 -->
		<mvc:interceptor>
			<mvc:mapping path="/userhome/*" />
			<mvc:mapping path="/user/*" />
			<bean class="com..web.interceptor.PhoneUserLoginInterceptor"></bean>
		</mvc:interceptor>
	</mvc:interceptors>



嗯,看着你用mvc标签的配置是方便些,还有什么好的见意,希望多讨论下。
18 楼 太阳神喻 2011-06-08  
matychen 写道
引用


<!--   
    配置一个基于注解的定制的WebBindingInitializer,解决日期转换问题,方法级别的处理器映射,  
    有人说该bean要放在context:component-scan前面,要不然不起作用,但我试的放后面也可以啊。  
    -->  
    <bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">  
        <property name="cacheSeconds" value="0" />  
        <property name="webBindingInitializer">  
            <bean class="com.fsj.spring.util.MyWebBinding" />  
        </property>  
    </bean> 



你这个是拦截所有的属性的吧?

对这个比较感兴趣,有空试一试

以前我是直接用注解的
@RequestParam @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") Date endTime,
			@RequestParam @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") Date startTime



不是所有所有属性,不过这样应该已经够用了,这个我现在也没有研究的很清楚,比如由Date转String的时候怎么灵活处理,目前是在页面上用的fmt标签,感觉有点不方便
17 楼 george_space 2011-06-08  
为什么几乎所有人都说spring mvc是0配置,或者“几乎0配置”?
难道注解不算是配置?

如果把path映射写在annotation中,就算是0配置,那目前所有的主流web框架都是0配置了。

所谓的0配置就是不需要写配置信息,一切都是按照约定来解析,不需要写xml或者annotation,spring mvc离这个目标还差很多呢,哪来的0配置?
16 楼 volking 2011-06-08  
mark...
15 楼 matychen 2011-06-08  
引用


<!-- 启用基于注解的处理器映射,添加拦截器,类级别的处理器映射 --> 
    <bean class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping"> 
        <property name="interceptors"> 
            <list> 
                <bean class="com.fsj.spring.util.MyHandlerInterceptor"/> 
            </list> 
        </property> 
    </bean>


这个配置可以用mvc的标签配置更方便点,个人感觉
<!-- 针对类、方法级别的权限拦截器 -->
	<mvc:interceptors>
	<!-- 管理员的权限拦截器 -->
		<mvc:interceptor>
			<mvc:mapping path="/adminhome/*" />
			<mvc:mapping path="/roles/*" />
			<mvc:mapping path="/sysuser/*" />
			<mvc:mapping path="/record/*" />
			<mvc:mapping path="/deliver/*" />
			<mvc:mapping path="/sysmonitor/*" />
			<mvc:mapping path="/moduleconf/*" />
			<mvc:mapping path="/business/*" />
			<mvc:mapping path="/userapp/*" />
			<mvc:mapping path="/payment/*" />
			<bean class="com..web.interceptor.LoginInterceptor"></bean>
		</mvc:interceptor>
	<!-- 普通用户的权限拦截器 -->
		<mvc:interceptor>
			<mvc:mapping path="/userhome/*" />
			<mvc:mapping path="/user/*" />
			<bean class="com..web.interceptor.PhoneUserLoginInterceptor"></bean>
		</mvc:interceptor>
	</mvc:interceptors>


14 楼 太阳神喻 2011-06-08  
denger 写道
long502147 写道
RequestMapping注解里的这个属性method=RequestMethod.POST,一定要配置么?请问一下Lz不配置有什么不一样不?

不配置表示任何请求方式都可以,不过一般遵寻 REST 约定,还是根据具体动作配置一下比较好。

是的,最好还是配置一下,还可以把一个请求路径各配置一个get和post,这样根据不同的请求方法可以进行不同的处理,如我的:同样的请求路径 user/add 如果是get请求就转到增加页面去,如果是post请求就做add操作
13 楼 matychen 2011-06-08  
引用


<!--   
    配置一个基于注解的定制的WebBindingInitializer,解决日期转换问题,方法级别的处理器映射,  
    有人说该bean要放在context:component-scan前面,要不然不起作用,但我试的放后面也可以啊。  
    -->  
    <bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">  
        <property name="cacheSeconds" value="0" />  
        <property name="webBindingInitializer">  
            <bean class="com.fsj.spring.util.MyWebBinding" />  
        </property>  
    </bean> 



你这个是拦截所有的属性的吧?

对这个比较感兴趣,有空试一试

以前我是直接用注解的
@RequestParam @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") Date endTime,
			@RequestParam @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") Date startTime


12 楼 太阳神喻 2011-06-08  
rekoe.net 写道
引用

<!-- 配置静态资源,直接映射到对应的文件夹,不被DispatcherServlet处理,3.04新增功能,需要重新设置spring-mvc-3.0.xsd -->
	<mvc:resources mapping="/img/**" location="/img/"/>
	<mvc:resources mapping="/js/**" location="/js/"/>
	<mvc:resources mapping="/css/**" location="/css/"/>


请问 这个怎么设置

需要重新设置spring-mvc-3.0.xsd

这个是因为mvc:resources是spring3.0.4新增的,所以如果使用之前的版本的spring-mvc-3.0.xsd就没有mvc:resources,所以Myeclipse会报错。
可以设置Mycelipse的XML Catalog,增加一个新的spring-mvc-3.0.xsd本地的映射。
还可以直接用新的spring-mvc-3.0.xsd替换Myeclipse中旧的spring-mvc-3.0.xsd。我的Myeclipse是8.6版自带的是spring3.0.1,如果Myeclipse不支持spring3.0,只能用第一种方法了。

1.引入相应JAR包
2.Myeclipse中window->preferences->XML->XML Catalog->add..
3.key type->URI
4.Location->file system->xxx/spring-mvc-3.0.xsd(注意一定要是spring3.0.4之后的版本的)
5.key type->Schema Location
6.key后面加上文件名/spring-mvc-3.0.xsd
7.OK
11 楼 denger 2011-06-08  
long502147 写道
RequestMapping注解里的这个属性method=RequestMethod.POST,一定要配置么?请问一下Lz不配置有什么不一样不?

不配置表示任何请求方式都可以,不过一般遵寻 REST 约定,还是根据具体动作配置一下比较好。
10 楼 太阳神喻 2011-06-08  
zhangyou1010 写道
spriing ----->spring

谢谢提醒,已改正
9 楼 long502147 2011-06-08  
RequestMapping注解里的这个属性method=RequestMethod.POST,一定要配置么?请问一下Lz不配置有什么不一样不?
8 楼 rekoe.net 2011-06-08  
引用

<!-- 配置静态资源,直接映射到对应的文件夹,不被DispatcherServlet处理,3.04新增功能,需要重新设置spring-mvc-3.0.xsd -->
	<mvc:resources mapping="/img/**" location="/img/"/>
	<mvc:resources mapping="/js/**" location="/js/"/>
	<mvc:resources mapping="/css/**" location="/css/"/>


请问 lz这个怎么设置

需要重新设置spring-mvc-3.0.xsd

相关推荐

    Spring MVC 3.0.5+Spring 3.0.5+MyBatis3.0.4全注解实例详解完整版

    总结,本实例详细介绍了如何使用 Spring MVC 3.0.5、Spring 3.0.5 和 MyBatis 3.0.4 进行全注解开发,涵盖了开发环境配置、Maven 的使用、SSM 整合以及如何在 Eclipse 和 MyEclipse 中集成 Maven。这个教程对于希望...

    Spring MVC 3.0.5+Spring 3.0.5+MyBatis3.0.4全注解实例详解

    【Spring MVC 3.0.5 + Spring 3.0.5 + MyBatis3.0.4 全注解实例详解】 Spring MVC 3.0.5 是Spring框架的一个重要版本,它引入了对RESTful风格的支持,使得构建Web应用更加灵活。REST(Representational State ...

    Spring+MVC+3.0.5+Spring+3.0.5+MyBatis3.0.4全注解实例详解

    在本教程中,我们将深入探讨如何使用Spring、Spring MVC 3.0.5以及MyBatis 3.0.4这三个流行的Java框架构建一个全注解的Web应用程序。这个实例详解将帮助开发者理解如何有效地集成这三个组件,实现高效的数据访问和...

    Spring3.0.5所有jar包及每个jar包作用说明文档

    2. **spring-beans.jar**:这个模块主要处理Bean的定义和配置,提供了BeanDefinition和BeanFactory接口,用于解析XML或注解配置,创建和管理Bean实例。 3. **spring-context.jar**:在核心和Bean模块之上,提供了更...

    springsecurity3.0.5应用

    在Spring Security 3.0.5版本中,它提供了许多关键的安全特性,包括用户认证、权限控制、CSRF防护、会话管理等。这个版本是Spring Security发展历史上的一个重要里程碑,它在前一个版本的基础上进行了优化和增强,...

    springMVC3.0.5常用的所有jar包.zip

    Spring MVC 是一个基于 Java 的轻量级 Web 开发框架,它是 Spring 框架的一部分,主要用于构建 MVC(Model-View-Controller)模式的 Web 应用程序。在本压缩包 "springMVC3.0.5常用的所有jar包.zip" 中,包含了一...

    SpringMVC文档.zip_spring mvc

    4. **基于Spring 3.0.5的简单用户管理实例** - 这个文档可能提供了一个使用Spring MVC实现用户管理功能的实际案例,涉及到用户注册、登录、权限控制等常见功能。 5. **Spring MVC 3.x annotated controller的几点...

    Struts2.2.3 Spring3.0.5 Hibernate3.6.5 sql server整合实例源码呈现

    Struts2.2.3、Spring3.0.5和Hibernate3.6.5是Java Web开发中的三个关键框架,它们常被一起使用以构建高效、模块化的应用程序。本实例中,这些框架与SQL Server数据库进行了整合,为开发者提供了一个完整的后端解决...

    spring-framework-3.0.5.reference.rar

    《Spring框架3.0.5参考指南》是Java开发者的重要参考资料,它详尽地阐述了Spring框架3.0.5版本的各项特性和使用方法。Spring Framework作为Java领域最流行的轻量级框架之一,以其模块化设计、依赖注入、面向切面编程...

    Struts 1.3.10+Spring3.0.5+Mybatis3.1.1框架整合全部jar包

    2. **Spring与Struts的集成**:使用Spring的Struts插件,将Action类的实例交给Spring容器管理,通过`&lt;bean&gt;`标签定义Action类并设置scope为prototype,保证每次请求都创建新的Action实例。 3. **Spring与Mybatis的...

    Spring MVC Helloworld实例

    在这个“Spring MVC Helloworld实例”中,我们将会探讨如何利用Spring MVC 3.0.5版本创建一个简单的Hello World应用程序。这个实例包括了所有必要的jar包,使开发者能够快速地开始他们的开发工作。 首先,了解...

    SSH整合(struts 2.2.1,hibernate 3.5.2,spring 3.0.5)

    SSH整合完成后,开发人员可以通过Struts 2处理用户请求,Spring负责管理对象和事务,而Hibernate则完成数据的持久化。这种三层架构使得开发者可以更专注地处理各自领域的任务,提升开发效率,同时也为项目的维护和...

    spring-framework-3.0.5.-source

    1. **BeanFactory**:Spring的核心组件,负责实例化、配置和管理Bean。通过XML配置文件或注解,可以声明Bean及其依赖关系。 2. **ApplicationContext**:扩展了BeanFactory,提供了更多的企业级服务,如消息来源、...

    [spring 3.0] mvc 整合 restful 、maven实例 下载

    在本文中,我们将深入探讨如何在Spring 3.0中整合MVC框架与RESTful服务,并结合Maven构建项目。RESTful(Representational State Transfer)是一种软件架构风格,用于设计网络应用程序,尤其适用于Web服务。Spring ...

    spring-framework-3.0.5.RELEASE-with-docs

    在Web层,Spring MVC是Spring Framework的重要组成部分,它为构建基于Servlet的Web应用提供了模型-视图-控制器(MVC)架构。3.0.5版本中,Spring MVC引入了更多用于处理HTTP请求的新特性,如`@RequestMapping`注解,...

    spring-framework-3.0.5相关jar及工程示例

    工程示例通常会涵盖这些知识点的实际应用,例如创建简单的 MVC 应用、配置和使用 DAO、实现事务管理、使用 AOP 创建切面等。通过分析和运行这些示例,你可以深入理解 Spring 如何在实际项目中发挥作用,从而提升你的...

    activiti+spring+srping Mvc+mybatis+maven整合

    本项目是关于"activiti+spring+spring Mvc+mybatis+maven"的整合,旨在创建一个基于Activiti工作流引擎、Spring、Spring MVC、MyBatis以及Maven的开发环境。下面将详细介绍这些技术及其整合过程。 首先,`activiti`...

Global site tag (gtag.js) - Google Analytics