spring和SpringMVC的配置

spring

<?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.xsd
                        http://www.springframework.org/schema/aop
                        http://www.springframework.org/schema/aop/spring-aop.xsd
                        http://www.springframework.org/schema/tx
                        http://www.springframework.org/schema/tx/spring-tx.xsd
                         http://www.springframework.org/schema/context
                        http://www.springframework.org/schema/context/spring-context.xsd
        "
       default-autowire="byName"
>
    <!--配置属性文件扫描-->
        <context:property-placeholder location="classpath:db.properties"></context:property-placeholder>
    <!--配置注解扫描-->
        <context:component-scan base-package="com.bjsxt.service.impl"></context:component-scan>
    <!--配置数据源bean-->
        <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
            <property name="driverClassName" value="${mysql.driver}"></property>
            <property name="url" value="${mysql.url}"></property>
            <property name="username" value="${mysql.username}"></property>
            <property name="password" value="${mysql.password}"></property>
        </bean>
    <!--配置功能bean-->
        <bean id="factory" class="org.mybatis.spring.SqlSessionFactoryBean">
            <property name="typeAliasesPackage" value="com.bjsxt.pojo"></property>
        </bean>
    <!--配置Mapper-->
        <bean id="mapper" class="org.mybatis.spring.mapper.MapperScannerConfigurer">
            <property name="sqlSessionFactoryBeanName" value="factory"></property>
            <property name="basePackage" value="com.bjsxt.mapper"></property>
        </bean>
    <!--配置事务管理bean-->
        <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager"></bean>
    <!--配置事务方法-->
        <tx:advice id="advice" transaction-manager="transactionManager">
            <tx:attributes>
                <tx:method name="sel*" read-only="true"/>
                <tx:method name="ins*"></tx:method>
                <tx:method name="up*"></tx:method>
                <tx:method name="del*"></tx:method>
            </tx:attributes>
        </tx:advice>
    <!--配置切面-->
        <aop:config>
            <aop:pointcut id="my" expression="execution(* com.bjsxt.service.impl.*.*(..))"></aop:pointcut>
            <aop:advisor advice-ref="advice" pointcut-ref="my"></aop:advisor>
        </aop:config>
</beans>

SpringMVC

<?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:mvc="http://www.springframework.org/schema/mvc"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context.xsd
        http://www.springframework.org/schema/mvc
        http://www.springframework.org/schema/mvc/spring-mvc.xsd
       ">
    <!--配置注解扫描-->
        <context:component-scan base-package="com.bjsxt.controller"></context:component-scan>
    <!--配置注解解析器-->
        <mvc:annotation-driven></mvc:annotation-driven>
    <!--配置静态资源方形-->
        <mvc:resources mapping="/js/**" location="/js/"></mvc:resources>
        <mvc:resources mapping="/css/**" location="/css/"></mvc:resources>
        <mvc:resources mapping="/images/**" location="/images/"></mvc:resources>
        <mvc:resources mapping="/themes/**" location="/themes/"></mvc:resources>
        <mvc:resources mapping="/upload/**" location="/upload/"></mvc:resources>
    <!--配置上传解析bean-->
        <bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
            <property name="defaultEncoding" value="utf-8"></property>
            <property name="maxInMemorySize" value="16003396"></property>
            <property name="maxUploadSize" value="16003396"></property>
         </bean>
    <!--配置异常处理bean-->
        <bean id="exceptionResolverxceptionResolver" class="org.springframework.web.servlet.handler.SimpleMappingExceptionResolver">
            <property name="exceptionMappings">
                <props>
                    <prop key="org.springframework.web.multipart.MaxUploadSizeExceededException">limit.jsp</prop>
                </props>
            </property>
        </bean>
    <!--配置自定义视图解析器-->
        <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
            <property name="prefix" value="/WEB-INF/"></property>
            <property name="suffix" value=".jsp"></property>
        </bean>
</beans>
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
在 IntelliJ 中配置 SpringSpringMVC,可以按照以下步骤进行: 1. 添加 SpringSpringMVC 的依赖 在项目的 pom.xml 文件中添加 SpringSpringMVC 的依赖: ```xml <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>5.0.2.RELEASE</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>5.0.2.RELEASE</version> </dependency> ``` 2. 配置 SpringSpringMVC配置文件 在 src/main/resources 目录下创建 SpringSpringMVC配置文件: - applicationContext.xml:配置 Spring 的基本配置信息 - springMVC-servlet.xml:配置 SpringMVC配置信息 3. 配置 Web.xml 文件 在项目的 web.xml 文件中配置 SpringMVC 的 DispatcherServlet: ```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>classpath:springMVC-servlet.xml</param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>springMVC</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping> ``` 4. 配置 SpringMVC 的注解扫描 在 springMVC-servlet.xml 配置文件中添加注解扫描配置: ```xml <context:component-scan base-package="com.example.controller"/> ``` 5. 配置 Spring 的注解扫描 在 applicationContext.xml 配置文件中添加注解扫描配置: ```xml <context:component-scan base-package="com.example"/> ``` 6. 配置视图解析器 在 springMVC-servlet.xml 配置文件中添加视图解析器配置: ```xml <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="prefix" value="/WEB-INF/views/"/> <property name="suffix" value=".jsp"/> </bean> ``` 以上是最基本的 SpringSpringMVC配置,可以根据具体需求进行扩展和优化。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值