zoukankan      html  css  js  c++  java
  • 搭建SpringMVC+MyBatis开发框架三

    新增spingmvc.xml配置

    在WEB-INF下新增spingmvc.xml,主要是配置spring扫描的包:

    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans" xmlns:p="http://www.springframework.org/schema/p" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xmlns:context="http://www.springframework.org/schema/context" xmlns:mvc="http://www.springframework.org/schema/mvc"
        xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd
            http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
            http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd">
    
        <!-- 
            spring可以自动去扫描base-package下面或者子包下面的java文件,
            如果扫描到有@Component @Controller @Service @Repository等这些注解的类,则把这些类注册为bean 
        -->
        <context:component-scan base-package="net.quickcodes.*" />
    
        <!-- 
            模型解析,在请求时为模型视图名称添加前后缀 
            比如在controller类中需要请求/WEB-INF/page/index.jsp文件,直接写index就可以了
        -->
        <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver" p:prefix="/WEB-INF/page/" p:suffix=".jsp" />
    
    </beans>
  • 相关阅读:
    YUI+Ant 实现JS CSS压缩
    13.QT-QMainWindow组件使用
    12.QT4.7.4-解决WIN平台和Linux平台中文乱码,QLineEdit右击菜单中文显示
    11.QT-布局管理器(Box,Grid,Form,Stacked)
    10.QT-定时器
    9.QT-标准对话框
    8.QT-对话框(模态与非模态)
    7.QT-Qt对象间的父子关系
    6.QT-简易计算器实现(详解)
    5.QT-QString类
  • 原文地址:https://www.cnblogs.com/quickcodes/p/da-jianSpringMVCMyBatis-kai-fa-kuang-jia-san.html
Copyright © 2011-2022 走看看