91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

MyBatis異常-Property 'configLocation' not specified, using default MyBatis Configuration

發布時間:2020-08-31 02:21:23 來源:腳本之家 閱讀:638 作者:徐劉根 欄目:編程語言

配置文件如下:

MyBatis異常-Property 'configLocation' not specified, using default MyBatis Configuration

base-context.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"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
  <!--用于激活容器中注冊的bean-->
  <!--<context:annotation-config/>-->
  <context:property-placeholder location="classpath*:/props/*.properties" ignore-unresolvable="true"/>
  <context:component-scan base-package="com.ufind.server.*">
    <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
  </context:component-scan>
</beans>

db-mybatis.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"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
  <bean id="sessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
    <property name="dataSource" ref="dataSource"/>
    <property name="mapperLocations" value="classpath:mybatis/mappers/*.xml"/>
  </bean>
  <bean id="mapperScannerConfigurer" class="org.mybatis.spring.mapper.MapperScannerConfigurer">
    <property name="basePackage" value="com.ufind.server.infra.repository.sql"/>
    <property name="sqlSessionFactoryBeanName" value="sessionFactory"/>
  </bean>
</beans>

persistence-context.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"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
  <bean id="dataSourceTransactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
    <property name="dataSource" ref="dataSource"/>
  </bean>
  <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource"
     init-method="init" destroy-method="close">
    <!-- 數據庫基本信息配置 -->
    <property name="driverClassName" value="${db.jdbc.driver}"/>
    <property name="url" value="${db.jdbc.connection.url}"/>
    <property name="username" value="${db.jdbc.username}"/>
    <property name="password" value="${db.jdbc.password}"/>
    <!-- 初始化連接數量 -->
    <property name="initialSize" value="10"/>
    <!-- 最大并發連接數 -->
    <property name="maxActive" value="100"/>
    <!-- 最小空閑連接數 -->
    <property name="minIdle" value="20"/>
    <!-- 配置獲取連接等待超時的時間 -->
    <property name="maxWait" value="5000"/>
    <!-- 超過時間限制是否回收 -->
    <property name="removeAbandoned" value="true"/>
    <!-- 超過時間限制多長; -->
    <property name="removeAbandonedTimeout" value="120000"/>
    <!-- 配置間隔多久才進行一次檢測,檢測需要關閉的空閑連接,單位是毫秒 -->
    <property name="timeBetweenEvictionRunsMillis" value="60000"/>
    <!-- 配置一個連接在池中最小生存的時間,單位是毫秒 -->
    <property name="minEvictableIdleTimeMillis" value="40000"/>
    <!-- 用來檢測連接是否有效的sql,要求是一個查詢語句-->
    <property name="validationQuery" value="select 1"/>
    <!-- 申請連接的時候檢測 -->
    <property name="testWhileIdle" value="true"/>
    <!-- 申請連接時執行validationQuery檢測連接是否有效,配置為true會降低性能 -->
    <property name="testOnBorrow" value="false"/>
    <!-- 歸還連接時執行validationQuery檢測連接是否有效,配置為true會降低性能 -->
    <property name="testOnReturn" value="false"/>
    <!-- 打開PSCache,并且指定每個連接上PSCache的大小 -->
    <property name="poolPreparedStatements" value="true"/>
    <property name="maxPoolPreparedStatementPerConnectionSize"
         value="50"/>
    <!--屬性類型是字符串,通過別名的方式配置擴展插件,常用的插件有:
        監控統計用的filter:stat
        日志用的filter:log4j
        防御SQL注入的filter:wall -->
    <property name="filters" value="stat"/>
  </bean>
</beans>

在mappers下邊是mybatis的xml文件,啟動的時候出現錯誤:

DEBUG o.m.spring.SqlSessionFactoryBean - Property 'configLocation' not specified, using default MyBatis Configuration

MyBatis異常-Property 'configLocation' not specified, using default MyBatis Configuration

解決方式如下:

<bean id="sessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
    <property name="dataSource" ref="dataSource"/>
    <property name="mapperLocations" value="classpath:mybatis/mappers/*.xml"/>
    <property name="configLocation" value="classpath:spring/persistence-context.xml"/>
</bean>

在sessionFactory下加入:

<property name="configLocation" value="classpath:spring/persistence-context.xml"/>

添加persistence-context.xml的位置即可,或者所有的文件都在一個文件即可

總結

以上就是這篇文章的全部內容了,希望本文的內容對大家的學習或者工作具有一定的參考學習價值,謝謝大家對億速云的支持。如果你想了解更多相關內容請查看下面相關鏈接

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

嘉峪关市| 开鲁县| 龙泉市| 竹山县| 霞浦县| 上栗县| 正宁县| 江门市| 张家港市| 万荣县| 衡阳市| 巢湖市| 蒙山县| 榆树市| 公安县| 巴南区| 石河子市| 兴城市| 大田县| 枞阳县| 庆元县| 龙岩市| 平定县| 红桥区| 青海省| 保山市| 益阳市| 平潭县| 天气| 玉门市| 普安县| 民县| 丹东市| 府谷县| 邓州市| 亚东县| 舞阳县| 陇川县| 兰考县| 南江县| 彰化市|