【詳細】總結JavaWeb開發中SSH框架開發問題(用心總結,不容錯過)

来源:https://www.cnblogs.com/xuyiqing/archive/2018/04/01/8685982.html
-Advertisement-
Play Games

在做JavaWeb的SSH框架開發的時候,遇到過很多的細節問題,這裡大概記錄下 我使用的IDE是Eclipse(老版本)三大框架:Spring4、Struts2、Hibernate5 1.web.xml的配置 1.ContextLoaderListener的作用: ContextLoaderList ...


在做JavaWeb的SSH框架開發的時候,遇到過很多的細節問題,這裡大概記錄下

我使用的IDE是Eclipse(老版本)三大框架:Spring4、Struts2、Hibernate5

 

1.web.xml的配置

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://java.sun.com/xml/ns/javaee"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
    id="WebApp_ID" version="2.5">
    <display-name>Blog</display-name>
    <session-config>
        <session-timeout>60</session-timeout>
    </session-config>
    <!-- 讓spring隨web啟動而創建的監聽器 -->
    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>
    <!-- 配置spring配置文件位置參數 -->
    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>classpath:applicationContext.xml</param-value>
    </context-param>
    <!-- 擴大session作用範圍 -->
    <filter>
        <filter-name>openSessionInView</filter-name>
        <filter-class>org.springframework.orm.hibernate5.support.OpenSessionInViewFilter</filter-class>
    </filter>
    <!-- struts2核心過濾器 -->
    <filter>
        <filter-name>struts2</filter-name>
        <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
    </filter>
    <filter-mapping>
        <filter-name>openSessionInView</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>
    <filter-mapping>
        <filter-name>struts2</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>

    <welcome-file-list>
        <welcome-file>index.html</welcome-file>
        <welcome-file>index.htm</welcome-file>
        <welcome-file>index.jsp</welcome-file>
        <welcome-file>default.html</welcome-file>
        <welcome-file>default.htm</welcome-file>
        <welcome-file>default.jsp</welcome-file>
    </welcome-file-list>
</web-app>

 

1.ContextLoaderListener的作用:

ContextLoaderListener監聽器的作用就是啟動Web容器時,自動裝配ApplicationContext的配置信息。

因為它實現了ServletContextListener這個介面,在web.xml配置這個監聽器,啟動容器時,就會預設執行它實現的方法。

在ContextLoaderListener中關聯了ContextLoader這個類,所以整個載入配置過程由ContextLoader來完成。

 

通俗簡單理解:必須要配置這個,用來讀取Spring配置文件

 

2.contextConfigLocation的作用:

配置spring配置文件位置參數,這裡我Spring的XML配置文件在src下,直接寫即可

 

3.OpenSessionInViewFilter的作用:

Spring為我們解決Hibernate的Session的關閉與開啟問題。

Hibernate 允許對關聯對象、屬性進行延遲載入,但是必須保證延遲載入的操作限於同一個 Hibernate Session 範圍之內進行。

如果 Service 層返回一個啟用了延遲載入功能的領域對象給 Web 層,當 Web 層訪問到那些需要延遲載入的數據時,由於載入領域對象的 Hibernate Session 已經關閉,這些導致延遲載入數據的訪問異常

比如拋出這種異常:

org.hibernate.LazyInitializationException:(LazyInitializationException.java:42) 
 - failed to lazily initialize a collection of role: cn.easyjava.bean.product.ProductType.childtypes, no session or session was closed
org.hibernate.LazyInitializationException: failed to lazily initialize a collection of role: cn.easyjava.bean.product.ProductType.childtypes, 
no session or session was closed

 用來把一個Hibernate Session和一次完整的請求過程對應的線程相綁定。目的是為了實現"Open Session in View"的模式。例如: 它允許在事務提交之後延遲載入顯示所需要的對象。

而Spring為我們提供的OpenSessionInViewFilter過濾器為我們很好的解決了這個問題。

OpenSessionInViewFilter的主要功能是用來把一個Hibernate Session和一次完整的請求過程對應的線程相綁定。

目的是為了實現"Open Session in View"的模式。例如: 它允許在事務提交之後延遲載入顯示所需要的對象

OpenSessionInViewFilter 過濾器將 Hibernate Session 綁定到請求線程中,它將自動被 Spring 的事務管理器探測到。

所以 OpenSessionInViewFilter 適用於 Service 層使用HibernateTransactionManager進行事務管理的環境,也可以用於非事務只讀的數據操作中

 

通俗簡單解釋:有時候資料庫查到的結果返回到jsp頁面會拋異常,配置好這個就可以解決。在前端頁面顯示完相應的結果再關閉session

 

其他註意事項:

1.strust2核心過濾器一定要寫在最後邊

2.開頭我這裡設置的session有效時間60(單位:分鐘)

 

接下來Spring配置文件:

命名什麼都可以,我取名applicationContext.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://www.springframework.org/schema/beans" xmlns:context="http://www.springframework.org/schema/context"
    xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd 
                            http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd 
                            http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.2.xsd 
                            http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.2.xsd ">

    <!-- 讀取db.properties文件 -->
    <context:property-placeholder location="classpath:db.properties" />
    <!-- 配置c3p0連接池 -->
    <bean name="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
        <property name="jdbcUrl" value="${jdbc.jdbcUrl}"></property>
        <property name="driverClass" value="${jdbc.driverClass}"></property>
        <property name="user" value="${jdbc.user}"></property>
        <property name="password" value="${jdbc.password}"></property>
    </bean>

    <!-- 核心事務管理器 -->
    <bean name="transactionManager"
        class="org.springframework.orm.hibernate5.HibernateTransactionManager">
        <property name="sessionFactory" ref="sessionFactory"></property>
    </bean>

    <!-- 配置通知 -->
    <tx:advice id="txAdvice" transaction-manager="transactionManager">
        <tx:attributes>
            <tx:method name="save*" isolation="REPEATABLE_READ"
                propagation="REQUIRED" read-only="false" />
            <tx:method name="persist*" isolation="REPEATABLE_READ"
                propagation="REQUIRED" read-only="false" />
            <tx:method name="update*" isolation="REPEATABLE_READ"
                propagation="REQUIRED" read-only="false" />
            <tx:method name="modify*" isolation="REPEATABLE_READ"
                propagation="REQUIRED" read-only="false" />
            <tx:method name="delete*" isolation="REPEATABLE_READ"
                propagation="REQUIRED" read-only="false" />
            <tx:method name="remove*" isolation="REPEATABLE_READ"
                propagation="REQUIRED" read-only="false" />
            <tx:method name="get*" isolation="REPEATABLE_READ"
                propagation="REQUIRED" read-only="true" />
            <tx:method name="find*" isolation="REPEATABLE_READ"
                propagation="REQUIRED" read-only="true" />
            <tx:method name="*" isolation="REPEATABLE_READ"
                propagation="REQUIRED" read-only="false" />
        </tx:attributes>
    </tx:advice>
    <!-- 配置將通知織入目標對象 -->
    <aop:config>
        <aop:pointcut expression="execution(* service.impl.*ServiceImpl.*(..))"
            id="txPc" />
        <aop:advisor advice-ref="txAdvice" pointcut-ref="txPc" />
    </aop:config>

    <!-- 在spring配置中放置hibernate配置信息 -->
    <bean name="sessionFactory"
        class="org.springframework.orm.hibernate5.LocalSessionFactoryBean">
        <!-- 將連接池註入到sessionFactory, hibernate會通過連接池獲得連接 -->
        <property name="dataSource" ref="dataSource"></property>
        <!-- 配置hibernate基本信息 -->
        <property name="hibernateProperties">
            <props>
                <prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect
                </prop>

                <!-- 可選配置 -->
                <prop key="hibernate.hbm2ddl.auto">update</prop>
            </props>
        </property>
        <!-- 引入orm元數據,指定orm元數據所在的包路徑,spring會自動讀取包中的所有配置 -->
        <property name="mappingDirectoryLocations" value="classpath:domain"></property>
    </bean>
    <!-- action -->
    <!-- 註意:Action對象作用範圍一定是多例的(prototype).這樣才符合struts2架構 -->
    <bean name="userAction" class="web.action.UserAction" scope="prototype">
        <property name="userService" ref="userService"></property>
    </bean>
    <!-- service -->
    <bean name="userService" class="service.impl.UserServiceImpl">
        <property name="userdao" ref="userDao"></property>
    </bean>
    <!-- dao -->
    <bean name="userDao" class="dao.impl.UserDaoImpl">
        <property name="sessionFactory" ref="sessionFactory"></property>
    </bean>
</beans>

這裡解釋下Spring配置文件以及易錯處:

1.資料庫參數我寫在一個db.properties文件種,方便開發中修改

2.接下來配置c3p0連接池,雖然不使用也可以,但是hibernate推薦使用

 

3.transactionManager這個bean,管理事務嵌套,開啟,關閉,資源線程同步,提交,回滾

初步瞭解, HibernateTransactionManager這個類提供 sessionFactory的管理。

為了實現數據同步,在HibernateTransactionManager內部會進行Hibernate session的open和close,並將打開的Hibernaate sesion關聯到當前的Application session。

在Application中則通過getCurrentSession方式獲取爭取的打開的Hibernate session,  從而解決某些方面的線程安全及同步問題。

 

通俗解釋,這裡配置的意義在於:只有配置好這一項,才可以在DAO層使用HibernateTemplate,方便資料庫操作

 

4.配置通知和AOP方面,見我以前文章:

http://www.cnblogs.com/xuyiqing/p/8463598.html

http://www.cnblogs.com/xuyiqing/p/8464465.html

這裡大概解釋下:

例如這裡:

            <tx:method name="get*" isolation="REPEATABLE_READ"
                propagation="REQUIRED" read-only="true" />

這一句的意思是:所有DAO層方法,在生效前,先通過這裡的“通知”,如果是get開頭的方法,只能查詢資料庫,無法修改

這裡的兩個參數:isolation="REPEATABLE_READ"事務隔離級別,暫不做解釋,開發中只選擇這一項

propagation="REQUIRED"事務傳播行為,暫不做解釋,開發中只選擇這一項

最後一個屬性,是否只讀:如果是查詢類方法,應該設置為只讀,如果是增刪更新操作,應該設置為false

 

下麵:expression="execution(* service.impl.*ServiceImpl.*(..))這裡是通配方法,為所有service包的實現類中的所有方法配置切點

後邊是一個增強AOP配置,配好即可,沒什麼解釋的

 

5.在spring配置中放置hibernate配置信息:

先註入上面配置好的c3p0連接池,再配置Hibernate

<prop key="hibernate.hbm2ddl.auto">update</prop>的意思是,每一次生成表的時候如果表存在則覆蓋,表不存在的話新建一張表,這種方式是最常用的

<prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>使用MySQL方言,我使用MySQL開發,所有使用這個配置

 

<!-- 引入orm元數據,指定orm元數據所在的包路徑,spring會自動讀取包中的所有配置 -->
<property name="mappingDirectoryLocations" value="classpath:domain"></property>

這裡的意思:hibernate需要一些元數據配置,我把這些配置寫在了一個domain包中

 

最後的三層結構的bean配置就不多解釋了

 

附:db.properties

jdbc.jdbcUrl=jdbc:mysql:///blog?useUnicode=true&characterEncoding=utf-8&autoReconnect=true
jdbc.driverClass=com.mysql.jdbc.Driver
jdbc.user=root
jdbc.password=123456

url設置的時候需要註意下:這裡有個大坑,當時解決了幾天。

後邊加入characterEncoding=utf-8才可以往資料庫中存入中文,否則都是亂碼

後一個參數autoReconnect=true是意思的:自動重連,MySQL如果長時間不操作就會關閉(預設8小時)

 

上邊提到了hibernateORM元數據配置:

這裡繼續

我建立了一個實體類:User(get、set方法)

package domain;

public class User {
    private Long u_id;
    private String username;
    private String u_password;
    private String qq;
    private String avatar;
    private Integer article_count;

    private String checkCode;

    
    
    
    public String getCheckCode() {
        return checkCode;
    }

    public void setCheckCode(String checkCode) {
        this.checkCode = checkCode;
    }

    public Long getU_id() {
        return u_id;
    }

    public void setU_id(Long u_id) {
        this.u_id = u_id;
    }

    public String getUsername() {
        return username;
    }

    public void setUsername(String username) {
        this.username = username;
    }

    public String getU_password() {
        return u_password;
    }

    public void setU_password(String u_password) {
        this.u_password = u_password;
    }

    public String getQq() {
        return qq;
    }

    public void setQq(String qq) {
        this.qq = qq;
    }

    public String getAvatar() {
        return avatar;
    }

    public void setAvatar(String avatar) {
        this.avatar = avatar;
    }

    public Integer getArticle_count() {
        return article_count;
    }

    public void setArticle_count(Integer article_count) {
        this.article_count = article_count;
    }
}
View Code

 

對應ORM元數據配置:

User.hbm.xml:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-mapping PUBLIC 
    "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
    "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
<hibernate-mapping package="domain">
    <class name="User" table="blog_user">
        <id name="u_id">
            <generator class="native"></generator>
        </id>
        <property name="username" column="username"></property>
        <property name="u_password" column="u_password"></property>
        <property name="qq" column="qq"></property>
        <property name="avatar" column="avatar"></property>
        <property name="article_count" column="article_count"></property>
    </class>
</hibernate-mapping>

 package是包名:在這個包下找到User類,映射

table是新建的表名字,Id是主鍵生成策略:

具體見我以前文章:http://www.cnblogs.com/xuyiqing/p/8449059.html

實體開發使用native即可

接下來就是配置表的欄位名即可

 

複雜的配置,如:一對多,多對多等(外鍵)

 

比如我這裡還有一個article文章類:一個用戶可以有多個文章,一個分類下也可以有多個文章:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-mapping PUBLIC 
    "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
    "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
<hibernate-mapping package="domain">
    <class name="Article" table="blog_article">
        <id name="article_id">
            <generator class="native"></generator>
        </id>
        <property name="title"></property>
        <property name="summary"></property>
        <property name="read_count"></property>
        <property name="comment_count"></property>
        <property name="up_count"></property>
        <property name="create_time"></property>
        <property name="article_detail"></property>
        <many-to-one name="article_type" column="article_type_id" class="Articletype"></many-to-one>
        <many-to-one name="author" column="article_author_id" class="User"></many-to-one>
    </class>
</hibernate-mapping>

 

更多的細節見我以前的文章:

http://www.cnblogs.com/xuyiqing/category/1163473.html

 

 

接下來是struts2的配置:

<?xml version="1.0" encoding="UTF-8"?>
  <!DOCTYPE struts PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 2.3//EN"
    "http://struts.apache.org/dtds/struts-2.3.dtd">

<struts>
    <constant name="struts.multipart.maxSize" value="31457280"></constant>
    <constant name="struts.objectFactory" value="spring"></constant>

    <package name="Blog" namespace="/" extends="struts-default">
        <interceptors>
            <interceptor name="privilegeInterceptor" class="web.interceptor.PrivilegeInterceptor"></interceptor>
            <interceptor-stack name="myStack">
                <interceptor-ref name="privilegeInterceptor">
                    <param name="excludeMethods">login,regist,createRandom,execute</param>
                </interceptor-ref>
                <interceptor-ref name="defaultStack"></interceptor-ref>
            </interceptor-stack>
        </interceptors>
        <default-interceptor-ref name="myStack"></default-interceptor-ref>
        <global-results>
            <result name="toHome" type="redirect">/IndexAction_articleTypeList
            </result>
            <result name="toLogin" type="redirect">/login.jsp</result>
        </global-results>

        <!-- 整合:class屬性上填寫spring中action對象的BeanName 完全由spring管理action生命周期,包括Action的創建 -->
        <action name="UserAction_*" class="userAction" method="{1}">
            <exception-mapping result="loginError"
                exception="java.lang.RuntimeException"></exception-mapping>
            <result name="loginError">/login.jsp</result>
            <result name="regist">/register.jsp</result>
        </action>
        <action name="CheckImgAction" class="web.action.CheckImgAction">
            <result name="success" type="stream">
                <param name="contentType">image/jpeg</param>
                <param name="inputName">inputStream</param>
            </result>
        </action>
        <action name="UploadAction_*" class="uploadAction" method="{1}">
            <result name="success">/index.jsp</result>
               <interceptor-ref name="defaultStack">
                   <param name="fileUpload.allowedExtensions">jepg,jpg,gif,png</param>
               </interceptor-ref> 
            <result name="input">/index.jsp</result>
        </action>
    </package>

    <package name="article" extends="json-default">
        <action name="OthersAction_*" class="othersAction" method="{1}">
            <result name="good" type="json"></result>
            <result name="reply" type="json"></result>
            <result name="delete" type="json"></result>
        </action>
    </package>
</struts>
    

 

開頭配置了兩個常量:上次文件最大位元組、交給Spring管理Action

後邊的:

1.這裡我設置了一個攔截器:暫且稱它為登錄狀態檢驗器:如果不登陸,無法訪問我的BBS,下邊我寫出攔截器代碼,這裡先看配置

要把自定義攔截器放在預設攔截器前面

                    <param name="excludeMethods">login,regist,createRandom,execute</param>

這裡的意思是不攔截登錄、註冊、隨機生成驗證碼方法

2.接下來配置的是全局結果集

3.後邊的Action配置就不必詳細說了:註意這一句

            <exception-mapping result="loginError"
                exception="java.lang.RuntimeException"></exception-mapping>

這裡我為什麼要配置一個異常呢?非常有用

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

-Advertisement-
Play Games
更多相關文章
  • 設計模式簡介: 設計模式是一套被反覆使用的、多數人知曉的、經過分類編目的、代碼設計經驗的總結。(個人理解:設計模式是不關乎業務,邏輯實現,針對普遍問題的一種解決方案)。 設計模式的類型: 傳統23種設計模式可分為3大類:創建型模式(Creational Patterns)、結構型模式(Structu ...
  • 【Java】0x01 配置開發環境,JDK、CLASSPATH等 一. 下載JDK安裝文件 首先,進入Oracle官網Java頁面。 註意,要下載的是JDK而不是JRE,這點很重要,因為JRE並不包含我們要用的源碼編譯之類的工具。 當前JDK最新版本為Java10,但如今主流的運行環境還是1.7、1 ...
  • Description 小Q的媽媽是一個出納,經常需要做一些統計報表的工作。今天是媽媽的生日,小Q希望可以幫媽媽分擔一些工 作,作為她的生日禮物之一。經過仔細觀察,小Q發現統計一張報表實際上是維護一個可能為負數的整數數列,並 且進行一些查詢操作。在最開始的時候,有一個長度為N的整數序列,並且有以下三 ...
  • 導讀 : 1.if語句 2.while語句 一、if語句 if語句是最常用的條件控制語句,Python中的一般形式為: if 條件一: statements elif 條件二: pass # 空語句/占位語句 else: statements Python中用 elif 代替了 else if ,所 ...
  • 本文總結自oldboy python教學視頻。 一、前言 1.裝飾器本質上就是函數,功能是裝飾其他函數,為其他函數添加附加功能。 裝飾器在裝飾函數時必須遵循3個重要的原則: (1)不能修改被裝飾的函數的源代碼 (2)不能修改被裝飾的函數的調用方式 (3)不能修改表裝飾函數的返回結果 2.實現裝飾器的 ...
  • Django在項目開發中有著結構清晰、層次明顯、容易編寫理解查閱demo的優點,那麼我們來個小案例具體看看。 一、項目結構簡析: 我們按照上一篇中的開發流程步驟創建一個新項目myblog,項目下有應用home、存放html文件templates的、運行項目生成的db.sqlite3和manage.p ...
  • 給定一個有序數組,你需要原地刪除其中的重覆內容,使每個元素只出現一次,並返回新的長度。 不要另外定義一個數組,您必須通過用 O(1) 額外記憶體原地修改輸入的數組來做到這一點。 個人代碼,較為弱智。 class Solution {public: int removeDuplicates(vector ...
  • 一直來,都是使用Vivado中自帶的GMIItoRGMII IP核來完成GMII轉RGMII的功能;儘管對GMII及RGMII協議都有一定的瞭解,但從沒用代碼實現過其功能。由於使用IP時,會涉及到MDIO配置IP寄存器的問題,覺得麻煩。因此決定用代碼實現GMII轉RGMII的功能。 參考Lattic ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...