學習筆記——尚好房項目(配置ssm環境、測試ssm環境)

来源:https://www.cnblogs.com/isDaHua/archive/2023/02/10/17109009.html
-Advertisement-
Play Games

2023-02-10 一、配置SSM環境 1、添加日誌文件 在“shf-parent/web-admin/src/main/resources”下創建“logback.xml” <?xml version="1.0" encoding="UTF-8"?> <configuration debug=" ...


2023-02-10

一、配置SSM環境

1、添加日誌文件

在“shf-parent/web-admin/src/main/resources”下創建“logback.xml”

<?xml version="1.0" encoding="UTF-8"?>
<configuration debug="false">

    <!--定義日誌文件的存儲地址 logs為當前項目的logs目錄 還可以設置為../logs -->
    <property name="LOG_HOME" value="logs" />

    <!--控制台日誌, 控制台輸出 -->
    <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
        <encoder class="ch.qos.logback.classic.encoder.PatternLayoutEncoder">
            <!--格式化輸出:%d表示日期,%thread表示線程名,%-5level:級別從左顯示5個字元寬度,%msg:日誌消息,%n是換行符-->
            <pattern>%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{50} - %msg%n</pattern>
        </encoder>
    </appender>

    <!-- 日誌輸出級別 -->
    <root level="DEBUG">
        <appender-ref ref="STDOUT" />
    </root>
</configuration>

2、在“shf-parent/web-admin/src/main/resources”下創建“mybatis-config.xml”

<?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>
        <setting name="mapUnderscoreToCamelCase" value="true"/>
    </settings>
</configuration>

3、在“shf-parent/web-admin/src/main/resources”下創建spring文件夾,創建“db.properties”

(1)db.properties

jdbc.username=資料庫用戶名
jdbc.password=資料庫密碼
jdbc.url=jdbc:mysql://localhost:3306/資料庫名稱?serverTimezone=Asia/Shanghai
jdbc.driverClassName=com.mysql.cj.jdbc.Driver

(2)在spring文件夾下

①創建“spring-dao.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:mybatis-spring="http://mybatis.org/schema/mybatis-spring"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsd http://mybatis.org/schema/mybatis-spring http://mybatis.org/schema/mybatis-spring.xsd">

<!--    引入外部文件-->
    <context:property-placeholder location="classpath:db.properties"></context:property-placeholder>

    <!--    配置數據源-->
    <bean class="com.alibaba.druid.pool.DruidDataSource" id="dataSource" destroy-method="close">
        <!--        配置連接資料庫的相關屬性-->
        <property name="username" value="${jdbc.username}"></property>
        <property name="password" value="${jdbc.password}"></property>
        <property name="url" value="${jdbc.url}"></property>
        <property name="driverClassName" value="${jdbc.driverClassName}"></property>
    </bean>

<!--    整合mybatis-->
<!--    1、配置sqlsessionFactoryBean-->
    <bean class="org.mybatis.spring.SqlSessionFactoryBean" id="sqlSessionFactoryBean">
<!--        配置數據源屬性-->
        <property name="dataSource" ref="dataSource"></property>
<!--        配置mybatis的全局配置文件的路徑-->
        <property name="configLocation" value="classpath:mybatis-config.xml"></property>
<!--        配置給實體類包下所有的類起別名-->
        <property name="typeAliasesPackage" value="com.hh.entity"></property>
<!--        配置mapper映射文件的路徑-->
        <property name="mapperLocations" value="classpath:mapper/*.xml"></property>
    </bean>

<!--    2、掃描mapper工具-->
    <mybatis-spring:scan base-package="com.hh.dao"></mybatis-spring:scan>
</beans>

②創建“spring-service.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: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 https://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.hh.service"></context:component-scan>
    
<!--    配置事務管理器-->
    <bean class="org.springframework.jdbc.datasource.DataSourceTransactionManager" id="transactionManager">
<!--        配置數據源屬性-->
        <property name="dataSource" ref="dataSource"></property>
    </bean>
    
<!--    開啟事務註解支持-->
    <tx:annotation-driven></tx:annotation-driven>
</beans>

③創建“spring-mvc.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: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/aop
        http://www.springframework.org/schema/aop/spring-aop.xsd
        http://www.springframework.org/schema/mvc
        http://www.springframework.org/schema/mvc/spring-mvc.xsd">
    <!--包掃描-->
    <context:component-scan base-package="com.hh.controller" />

    <!-- 沒有匹配上的url全部按預設方式(就是直接訪問)訪問,避免攔截靜態資源 -->
    <mvc:default-servlet-handler/>
    <!-- 開啟mvc註解-->
    <mvc:annotation-driven>
        <mvc:message-converters register-defaults="true">
            <!-- 配置Fastjson支持 -->
            <bean class="com.alibaba.fastjson.support.spring.FastJsonHttpMessageConverter">
                <property name="supportedMediaTypes">
                    <list>
                        <value>text/html;charset=UTF-8</value>
                        <value>application/json</value>
                    </list>
                </property>
            </bean>
        </mvc:message-converters>
    </mvc:annotation-driven>

    <!--視圖解析器-->
    <bean id="templateResolver" class="org.thymeleaf.spring5.templateresolver.SpringResourceTemplateResolver">
        <!--配置首碼-->
        <property name="prefix" value="/WEB-INF/templates/"></property>
        <!--配置尾碼-->
        <property name="suffix" value=".html"></property>
        <!--配置編碼格式-->
        <property name="characterEncoding" value="UTF-8"></property>
        <!--設置緩存為null-->
        <property name="cacheable" value="false"></property>
        <!--配置模板模式,
        HTML5:表示嚴格模式
        LEGACYHTML5:表示寬鬆模式-->
        <property name="templateMode" value="LEGACYHTML5"></property>
    </bean>
    <!--配置spring的視圖解析器-->
    <bean id="viewResolver" class="org.thymeleaf.spring5.view.ThymeleafViewResolver">
        <!--設置編碼格式-->
        <property name="characterEncoding" value="UTF-8"></property>
        <!--設置模板引擎-->
        <property name="templateEngine" ref="templateEngine"/>
    </bean>
    <!--配置模板引擎-->
    <bean id="templateEngine" class="org.thymeleaf.spring5.SpringTemplateEngine">
        <!--引用視圖解析器-->
        <property name="templateResolver" ref="templateResolver"></property>
    </bean>
</beans>

(3)在“shf-parent/web-admin/src/main/resources”下創建mapper文件夾

(4)在“shf-parent/web-admin/src/main/java”下創建包“com.hh.controller”、“com.hh.dao”、“com.hh.service”

4、配置“shf-parent/web-admin/src/main/webapp/WEB-INF/web.xml”文件

<?xml version="1.0" encoding="UTF-8"?>
<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_4_0.xsd"
         version="4.0">
    <display-name>web</display-name>

<!--    配置POST請求請求亂碼問題的過濾器-->
    <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>
        <init-param>
            <param-name>forceRequestEncoding</param-name>
            <param-value>true</param-value>
        </init-param>
        <init-param>
            <param-name>forceResponseEncoding</param-name>
            <param-value>true</param-value>
        </init-param>
    </filter>
    <filter-mapping>
        <filter-name>CharacterEncodingFilter</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>

<!--    配置前端控制器DispatcherServlet-->
    <servlet>
        <servlet-name>dispatcherServlet</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <init-param>
            <param-name>contextConfigLocation</param-name>
            <param-value>classpath:spring/spring-mvc.xml</param-value>
        </init-param>
    </servlet>
    <servlet-mapping>
        <servlet-name>dispatcherServlet</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>
    
<!--    配置當前WEB應用的初始化參數-->
    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>classpath:/spring/spring-*.xml</param-value>
    </context-param>
    
<!--    配置監聽器-->
    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>
</web-app>

二、測試SSM環境

1、添加表

2、添加實體

3、添加RoleDao

在“shf-parent/web-admin/src/main/java/com.hh.dao”下創建RoleDao介面

public interface RoleDao {
    List<Role> findAll();
}

4、添加RoleDao.xml映射文件

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
        PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
        "http://mybatis.org/dtd/mybatis-3-mapper.dtd">

<mapper namespace="com.hh.dao.RoleDao">

    <!-- 用於select查詢公用抽取的列 -->
    <sql id="columns">
        select id,role_name,role_code,description,create_time,update_time,is_deleted
    </sql>

<!--   查詢所有-->
    <select id="findAll" resultType="role">
        <include refid="columns"></include>
        from acl_role
        where is_deleted = 0
    </select>
    
</mapper>

5、添加service

①在“shf-parent/web-admin/src/main/java/com.hh.service”中創建“RoleService"

public interface RoleService {
    List<Role> findAll();
}

②在“shf-parent/web-admin/src/main/java/com.hh.service”中創建“impl.RoleServiceImpl"

@Service
public class RoleServiceImpl implements RoleService {

    @Autowired
    private RoleDao roleDao;
    @Override
    public List<Role> findAll() {
        return roleDao.findAll();
    }
}

6、添加controller

在“shf-parent/web-admin/src/main/java/com.hh.controller”中創建“RoleController"

@Controller
@RequestMapping("/role")
public class RoleController {
    @Autowired
    private RoleService roleService;

    @RequestMapping
    public String index(Map map){
        //調用RoleService中獲取所有的角色的方法
        List<Role> roleList = roleService.findAll();
        //將所有的角色放到request域中
        map.put("list",roleList);
        //渲染數據的頁面
        return "role/index";
    }
}

7、添加頁面

在“shf-parent/web-admin/src/main/webapp/WEN-INF”下創建“templates/role/index.html"

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<table>
    <tr th:each="item,it : ${list}">
        <td class="text-center" th:text="${it.count}">11</td>
        <td th:text="${item.roleName}">22</td>
        <td th:text="${item.roleCode}">33</td>
        <td th:text="${item.description}">33</td>
        <td th:text="${#dates.format(item.createTime,'yyyy-MM-dd HH:mm:ss')}" >33</td>
    </tr>
</table>
</body>
</html>

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 學習爬蟲第N天 今天想著將爬蟲獲取到的內容放在桌面,所以去學習了下 os 的操作。 學習如下: import os, os.path (經常性喜歡將文件放在桌面來查看內容是否正確,所以先創建一個變數存儲桌面的位置) desktop = fr"C:\Users\{os.getlogin()}\Desk ...
  • SpringMVC底層機制簡單實現-02 https://github.com/liyuelian/springmvc-demo.git 4.任務3-從web.xml動態獲取容器配置文件 4.1分析 任務3:MyDispatcherServlet (自定義的前端分發器)在創建並初始化自定義的spri ...
  • 這篇文章主要討論分散式系統中的分散式鎖問題,包括了三種不同的分散式鎖實現方式:基於資料庫的分散式鎖、基於緩存的分散式鎖和基於ZooKeeper的分散式鎖。 ...
  • 一、前言 上一篇我們完成了軟體的基本功能,如果想在用戶使用我們的app時,自動檢測新版本並讓自動完成安裝,這樣豈不是更好?本篇我們就來探究一下遠程更新的過程,並完成實際的功能。另外在使用過程中發現,登錄之後重啟app,會發現需要再次登錄,使用很不方便,我們也在第三部分解決這個問題。 二、fusion ...
  • 《Terraform 101 從入門到實踐》這本小冊在南瓜慢說官方網站和GitHub兩個地方同步更新,書中的示例代碼也是放在GitHub上,方便大家參考查看。 軍書十二捲,捲捲有爺名。 為什麼需要狀態管理 Terraform的主要作用是管理雲平臺上的資源,通過聲明式的HCL配置來映射資源,如果雲平臺 ...
  • 效果圖: // 這裡設置預設初始步驟StepContentFn('.starBox', "已申請:楊博:2020/2/3:已申請審批意見, 已立項:楊博:2020/5/5:已立項審批意見, 實施中:張三:2020/5/9:實施中意見, 等待中:楊博:2020/6/6:等待中審批意見,已完結:楊博:2 ...
  • 一、Typora軟體的下載與使用 (1)、軟體下載 百度網盤windowsx64已破解:https://pan.baidu.com/s/1ksoh9TeprB5LkZ3tKB-AAA?pwd=p6w6 提取碼:p6w6 ios下載地址:https://mac.qdrayst.com/02/Typor ...
  • 1.什麼是函數模版 函數模板,實際上是建立一個通用函數,其函數類型和形參類型不具體制定,用一個虛擬的類型來代表。這個通用函數就成為函數模板 2.怎麼編寫函數模版 //T代表泛型的數據類型,不是只能寫T, template<class T>//讓編譯器看到這句話後面緊跟著的函數里有T不要報錯 void ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...