一区二区三区在线-一区二区三区亚洲视频-一区二区三区亚洲-一区二区三区午夜-一区二区三区四区在线视频-一区二区三区四区在线免费观看

服務器之家:專注于服務器技術及軟件下載分享
分類導航

PHP教程|ASP.NET教程|Java教程|ASP教程|編程技術|正則表達式|C/C++|IOS|C#|Swift|Android|JavaScript|易語言|

服務器之家 - 編程語言 - Java教程 - LibrarySystem圖書管理系統(二)

LibrarySystem圖書管理系統(二)

2021-05-06 11:12Remember_Ray Java教程

這篇文章主要為大家詳細介紹了LibrarySystem圖書管理系統開發第二篇,具有一定的參考價值,感興趣的小伙伴們可以參考一下

本文實例為大家分享了librarysystem圖書管理系統第二篇,供大家參考,具體內容如下

第一步:添加數據庫配置文件

jdbc.properties

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# 數據庫驅動
jdbc.driver=com.mysql.jdbc.driver
 
# 數據庫地址
jdbc.url=jdbc:mysql://localhost:3306/library?useunicode=true&characterencoding=utf-8
 
# 用戶名
jdbc.username=root
 
# 密碼
jdbc.password=root
 
# 初始化連接
initialsize=0
 
# 最大連接數量
maxactive=20
 
# 最大空閑連接
maxidle=20
 
# 最小空閑連接
minidle=1
 
# 超時等待時間
maxwait=60000

第二步:添加mybatis配置文件

mybatis-config.xml

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?xml version="1.0" encoding="utf-8" ?>
<!doctype configuration public "-//mybatis.org//dtd config 3.0//en" "http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
 <!-- 配置全局屬性 -->
 <settings>
  <!-- 使用jdbc的getgeneratedkeys獲取主鍵 -->
  <setting name="usegeneratedkeys" value="true"/>
 
  <!-- 使用別名替換列名, 默認ture -->
  <setting name="usecolumnlabel" value="true"/>
 
  <!-- 開啟駝峰命名轉換 -->
  <setting name="mapunderscoretocamelcase" value="true"/>
 </settings>
</configuration>

第三步:添加spring配置文件

在resources/spring目錄下新建二個文件:

│   └── spring
│       ├── spring-mybatis.xml
│       ├── spring-service.xml
│       └── spring-mvc.xml

spring-mvc.xml

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?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-4.0.xsd
      http://www.springframework.org/schema/context
      http://www.springframework.org/schema/context/spring-context-4.0.xsd
      http://www.springframework.org/schema/mvc
      http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd">
 
 <!-- 注冊組件掃描器 -->
 <context:component-scan base-package="com.ray.controller"/>
 
 <!-- 訪問靜態資源 -->
 <mvc:default-servlet-handler/>
 
 <!-- 開啟注解模式 -->
 <mvc:annotation-driven>
  <mvc:message-converters>
   <bean class="org.springframework.http.converter.stringhttpmessageconverter">
    <property name="supportedmediatypes">
     <list>
      <!-- 解決中文亂碼 -->
      <value>text/plain;charset=utf-8</value>
      <value>text/html;charset=utf-8</value>
      <value>application/json;charset=utf-8</value>
     </list>
    </property>
   </bean>
  </mvc:message-converters>
 </mvc:annotation-driven>
 
 <!-- 視圖解析器 -->
 <bean class="org.springframework.web.servlet.view.internalresourceviewresolver">
  <!-- 前綴 -->
  <property name="prefix" value="/web-inf/views/"/>
  <!-- 后綴 -->
  <property name="suffix" value=".jsp"/>
 </bean>
</beans>

spring-mybatis.xml

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?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:tx="http://www.springframework.org/schema/tx"
  xsi:schemalocation="http://www.springframework.org/schema/beans
      http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
      http://www.springframework.org/schema/context
      http://www.springframework.org/schema/context/spring-context-3.1.xsd
      http://www.springframework.org/schema/tx
      http://www.springframework.org/schema/tx/spring-tx.xsd">
 
 <!-- 1.配置數據庫相關參數 -->
 <context:property-placeholder location="classpath:jdbc.properties"/>
 
 <!-- 2.配置druid數據源 -->
 <bean id="datasource" class="com.alibaba.druid.pool.druiddatasource" init-method="init" destroy-method="close">
  <!-- 配置連接池屬性 -->
  <property name="driverclassname" value="${jdbc.driver}"/>
  <property name="url" value="${jdbc.url}"/>
  <property name="username" value="${jdbc.username}"/>
  <property name="password" value="${jdbc.password}"/>
 
  <!-- 配置初始化大小,最小,最大值 -->
  <property name="initialsize" value="1"/>
  <property name="minidle" value="1"/>
  <property name="maxactive" value="10"/>
 
  <!-- 配置獲取連接等待超時的時間 -->
  <property name="maxwait" value="10000"/>
 
  <!-- 配置間隔多久才進行一次檢測,檢測需要關閉空閑連接,單位毫秒 -->
  <property name="timebetweenevictionrunsmillis" value="60000"/>
 
  <!-- 配置一個連接在池中最小生存的時間,單位是毫秒 -->
  <property name="minevictableidletimemillis" value="300000"/>
 
  <!-- 驗證連接有效與否的sql,不同的數據配置不同 -->
  <property name="validationquery" value="select 1" />
 
  <!-- 如果空閑時間大于timebetweenevictionrunsmillis,執行validationquery檢測連接是否有效 -->
  <property name="testwhileidle" value="true"/>
 
  <!-- 這里建議配置為true,防止取到的連接不可用 -->
  <property name="testonborrow" value="true"/>
  <property name="testonreturn" value="false"/>
 
  <!-- 打開pscache,并且指定每個連接上pscache的大小 -->
  <property name="poolpreparedstatements" value="true"/>
  <property name="maxpoolpreparedstatementperconnectionsize" value="20"/>
 
  <!-- 這里配置提交方式,默認就是true,可以不用配置 -->
  <property name="defaultautocommit" value="true" />
 
  <!-- 開啟druid的監控統計功能 -->
  <property name="filters" value="stat"/>
 </bean>
 
 <!-- 3.配置mybatis的sqlsessionfactory對象 -->
 <bean id="sqlsessionfactory" class="org.mybatis.spring.sqlsessionfactorybean">
  <!-- 配置mybatis全局配置文件 -->
  <property name="configlocation" value="classpath:mybatis-config.xml"/>
  <!-- 注入數據庫連接池 -->
  <property name="datasource" ref="datasource"/>
  <!-- 掃描配置文件 -->
  <property name="mapperlocations" value="classpath:mapping/*.xml"/>
 </bean>
 
 <!-- 4.配置掃描dao接口包,動態實現dao接口,注入到spring容器中 -->
 <bean class="org.mybatis.spring.mapper.mapperscannerconfigurer">
  <!-- 給出需要掃描dao接口包 -->
  <property name="basepackage" value="com.ray.dao"/>
 </bean>
 
</beans>

spring-service.xml

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?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:tx="http://www.springframework.org/schema/tx"
  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/tx
 http://www.springframework.org/schema/tx/spring-tx.xsd">
 
 <!-- 自動掃描 -->
 <context:component-scan base-package="com.ray"/>
 
 <!-- 事務管理 -->
 <bean id="transactionmanager" class="org.springframework.jdbc.datasource.datasourcetransactionmanager">
  <property name="datasource" ref="datasource"/>
 </bean>
 
 <!-- 開啟事務控制的注解支持 -->
 <tx:annotation-driven transaction-manager="transactionmanager"/>
</beans>

 第四步:添加logback配置文件

logback配置比log4j要簡單點,功能類似

├── resources
│   ├── logback.xml

在resources文件夾下新建文件:logback.xml

?
1
2
3
4
5
6
7
8
9
10
11
12
<?xml version="1.0" encoding="utf-8" ?>
<configuration debug="true">
 <appender name="stdout" class="ch.qos.logback.core.consoleappender">
 <encoder>
  <pattern>%d{hh:mm:ss.sss} [%thread] %-5level %logger{36} - %msg%n</pattern>
 </encoder>
 </appender>
 <!--開啟debug日志模式,在控制臺打印日志-->
 <root level="debug">
 <appender-ref ref="stdout" />
 </root>
</configuration>

第五步:配置web.xml

web.xml

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance"
   xsi:schemalocation="http://xmlns.jcp.org/xml/ns/javaee
      http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
   version="3.1" metadata-complete="true">
 <display-name>archetype created web application</display-name>
 
 <!-- 配置dispatcherservlet -->
 <servlet>
 <servlet-name>seckill-dispatcher</servlet-name>
 <servlet-class>org.springframework.web.servlet.dispatcherservlet</servlet-class>
 <!-- 配置springmvc需要加載的配置文件
  spring-dao.xml,spring-service.xml,spring-web.xml
  mybatis - > spring -> springmvc
  -->
 <init-param>
  <param-name>contextconfiglocation</param-name>
  <param-value>classpath:spring/spring-*.xml</param-value>
 </init-param>
 <load-on-startup>1</load-on-startup>
 <async-supported>true</async-supported>
 </servlet>
 <servlet-mapping>
 <servlet-name>seckill-dispatcher</servlet-name>
 <!-- 默認匹配所有的請求 -->
 <url-pattern>/</url-pattern>
 </servlet-mapping>
 
 <!-- 處理中文亂碼 -->
 <filter>
 <filter-name>characterencodingfilter</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>
 </filter>
 <filter-mapping>
 <filter-name>characterencodingfilter</filter-name>
 <url-pattern>/*</url-pattern>
 </filter-mapping>
</web-app>

項目結構:

LibrarySystem圖書管理系統(二)

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持服務器之家。

原文鏈接:https://blog.csdn.net/q343509740/article/details/80411511

延伸 · 閱讀

精彩推薦
主站蜘蛛池模板: 日韩欧美色图 | 午夜秀场在线观看 | 久久视频这里只精品99热在线观看 | 十大看黄网站 | chinese老太grandma | 国模大胆一区二区三区 | 短篇最污的乱淫伦小说全集 | 羞羞影院午夜男女爽爽影院网站 | 三级无删减高清在线影院 | 国产免费丝袜调教视频 | 激情亚洲天堂 | 久久免费看少妇高潮A片JA | 关晓彤被草 | 洗濯屋し在线观看 | 男人的私人影院 | 日本精品久久久久中文字幕 1 | 91精品国产91久久久久久 | 日韩网站在线观看 | 99re热这里只有精品视频 | 深夜激情网站 | 91在线视频播放 | heyzo1754北岛玲在线视频 | 久久亚洲伊人 | 男人日女人的逼视频 | 日韩美一区二区三区 | 欧美三茎同入 | 女同久久另类99精品国产 | 奇米影视777最新在线 | 日本加勒比在线精品视频 | 国产精品欧美日韩一区二区 | 日本动漫啪啪动画片mv | 激情图片 激情小说 | 污文啊好棒棒啊好了 | 欧美色阁 | 国产精品视频免费看 | 大肚孕妇的高h辣文 | hd性欧美俱乐部中文 | 99在线观看视频 | 香蕉国产人午夜视频在线观看 | 女高h| 免费精品在线视频 |