博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
paip.spring3 mvc servlet的配置以及使用最佳实践
阅读量:6112 次
发布时间:2019-06-21

本文共 2411 字,大约阅读时间需要 8 分钟。

paip.spring3 mvc servlet的配置以及使用最佳实践

 

 

 

 

1.Web.xml

 <servlet>     

     <servlet-name>spring</servlet-name>     

     <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>     

    <init-param>  

        <param-name>contextConfigLocation</param-name>  

        <param-value>/WEB-INF/springMVC.xml</param-value>  

    </init-param>     

     <load-on-startup>1</load-on-startup>     

 </servlet>     

 <servlet-mapping>     

     <servlet-name>spring</servlet-name>  <!-- 这里在配成spring,下边也要写一个名为spring-servlet.xml的文件,主要用来配置它的controller -->   

     <url-pattern>*.json</url-pattern>     

 </servlet-mapping>  

 

Xml的位置可以放得个多个地张儿..不过mvc还是放得个web-inf哈面儿好,不用铜布xml...减少部署的问题..

多个文件/WEB-INF/xxx/*.xml

classpath*:/springMVC.xml

 

 

作者Attilax 艾龙,  EMAIL:1466519819@qq.com 

来源:老哇的爪子 Attilax 
地址:http://blog.csdn.net/attilax

2.springMVC.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:context="http://www.springframework.org/schema/context"   

    xmlns:aop="http://www.springframework.org/schema/aop" 

    xmlns:tx="http://www.springframework.org/schema/tx"   

    xmlns:mvc="http://www.springframework.org/schema/mvc"

    xmlns:p="http://www.springframework.org/schema/p"

    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/aop http://www.springframework.org/schema/aop/spring-aop-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/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">

     <mvc:default-servlet-handler/>       

<mvc:annotation-driven />

<context:annotation-config />

<context:component-scan base-package="comapi.**,com.im"/>

<bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter" />  

</beans>

 

1.mvcAction .mvcAction 

@Controller  

 @RequestMapping("/im")   这个参数也能不代了...

public class mvcAction {

@RequestMapping(value = "/list3")

public void searchByKeyword2(String idxf, String keyword, int offset,

int limit, HttpServletResponse response) throws Exception {

 

response.getWriter().write("json txt"); 

}

 

 

 

2.Resin4 发动跟踪mvc maping

 

 

发动resin的时候儿,能看见所有的生成的map url ....feobye调试...

 

 

3.  

 

这个问题是更改孪注解的Url...但是,resinreload....

只要更改class,biru添加一个方法,就能reload...生效兰...

你可能感兴趣的文章
汉字转拼音 (转)
查看>>
Machine Learning Techniques -6-Support Vector Regression
查看>>
会计基础_001
查看>>
Cordova 开发环境搭建及创建第一个app
查看>>
ajax请求拿到多条数据拼接显示在页面中
查看>>
小程序: 查看正在写的页面
查看>>
dedecms生成文档数据库崩溃 mysql daemon failed to start
查看>>
Linux的50个基本命令
查看>>
Objective-C中创建单例方法的步骤
查看>>
[转]无法安装MVC3,一直卡在vs10-kb2483190
查看>>
Codeforces 520B:Two Buttons(思维,好题)
查看>>
web框架-(二)Django基础
查看>>
Jenkins持续集成环境部署
查看>>
emoji等表情符号存mysql的方法
查看>>
Excel到R中的日期转换
查看>>
检查磁盘利用率并且定期发送告警邮件
查看>>
MWeb 1.4 新功能介绍二:静态博客功能增强
查看>>
linux文本模式和文本替换功能
查看>>
Windows SFTP 的安装
查看>>
摄像机与绕任意轴旋转
查看>>