SSM框架快速整合實例——學生查詢

来源:https://www.cnblogs.com/aishangJava/archive/2018/11/23/10008763.html
-Advertisement-
Play Games

一、快速準備 SSM 框架即 Spring 框架、SpringMVC 框架、MyBatis 框架,關於這幾個框架的基礎和入門程式,我前面已經寫過幾篇文章作為基礎和入門介紹了。這裡再簡單的介紹一下: 1.Spring Spring 框架是 Java 應用最廣的框架,它的成功來源於理念,而不是技術本身, ...


一、快速準備

SSM 框架即 Spring 框架、SpringMVC 框架、MyBatis 框架,關於這幾個框架的基礎和入門程式,我前面已經寫過幾篇文章作為基礎和入門介紹了。這裡再簡單的介紹一下:

1.Spring

Spring 框架是 Java 應用最廣的框架,它的成功來源於理念,而不是技術本身,它的理念包括 IoC (控制反轉) 和 A面向切麵編程)。Spring框架是個輕量級的Java EE框架,所謂輕量級,是指不依賴於容器就能運行的。簡單來說,Spring是一個輕量級的控制反轉(IoC)和麵向切麵(AOP)的容器框架。

2.Spring MVC

作用於web層,相當於controller,與struts中的action一樣,都是用來處理用戶請求的。同時,相比於struts2來說,更加細粒度,它是基於方法層面的,而struts是基於類層面的。Spring MVC 分離了控制器、模型對象、分派器以及處理程式對象的角色,這種分離讓它們更容易進行定製。

3.MyBatis

MyBatis 本是apache的一個開源項目iBatis, 2010年這個項目由apache software foundation 遷移到了google code,並且改名為MyBatis 。MyBatis 是一款優秀的持久層框架,它支持定製化 SQL、存儲過程以及高級映射。MyBatis 避免了幾乎所有的 JDBC 代碼和手動設置參數以及獲取結果集。MyBatis 可以使用簡單的 XML 或註解來配置和映射原生信息,將介面和 Java 的 POJOs(Plain Old Java Objects,普通的 Java對象)映射成資料庫中的記錄。

如果已經陸續學習過 SSM 框架相關知識的,可以忽略掉這一部分,直接看下麵的內容。

二、快速創建項目

鑒於 jar 包依賴於管理的方便,我們使用 Maven 進行項目的管理和開發,所以這一步我們使用 IDEA 快速創建一個 Maven 項目,關於如何使用 IDEA 快速創建 Maven 項目,這裡就不進行過多贅述了,大家可以參考下麵這篇文章:

Maven 項目管理工具基礎系列(一)

三、快速配置 jar 包依賴

Maven 項目創建完成後,快速打開並配置 pom.xml 文件,具體配置如下:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.ssm.example</groupId>
  <artifactId>SsmDemo</artifactId>
  <packaging>war</packaging>
  <version>0.0.1-SNAPSHOT</version>
  <name>SSMDemo Maven Webapp</name>
  <url>http://maven.apache.org</url>
  <dependencies>

		<!-- 配置 SpringMVC 依賴包 -->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-webmvc</artifactId>
            <version>4.3.7.RELEASE</version>
        </dependency>

        <!-- Spring JDBC 依賴包-->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-jdbc</artifactId>
            <version>4.3.7.RELEASE</version>
        </dependency>

        <!-- Spring AOP 依賴包-->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-aspects</artifactId>
            <version>4.3.7.RELEASE</version>
        </dependency>

        <!--MyBatis 依賴包-->
        <dependency>
            <groupId>org.mybatis</groupId>
            <artifactId>mybatis</artifactId>
            <version>3.4.2</version>
        </dependency>
        
        <!-- Spring 整合 MyBatis 依賴包 -->
        <dependency>
            <groupId>org.mybatis</groupId>
            <artifactId>mybatis-spring</artifactId>
            <version>1.3.1</version>
        </dependency>

		<!-- MySQL 驅動依賴包 -->
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <version>5.1.41</version>
        </dependency>
		
        <!-- C3P0 數據源依賴包 -->
        <dependency>
            <groupId>c3p0</groupId>
            <artifactId>c3p0</artifactId>
            <version>0.9.1</version>
        </dependency>
        
        <!-- jstl 依賴包 -->
        <dependency>
            <groupId>jstl</groupId>
            <artifactId>jstl</artifactId>
            <version>1.2</version>
        </dependency>

		<!-- ServletAPI 依賴包-->
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>javax.servlet-api</artifactId>
            <version>3.0.1</version>
            <scope>provided</scope>
        </dependency>

        <!-- junit 測試依賴包 -->
      <dependency>
          <groupId>junit</groupId>
          <artifactId>junit</artifactId>
          <version>3.8.1</version>
      </dependency>

  </dependencies>

    <!-- 如果不添加此節點,mybatis 的 mapper.xml 文件都會被漏掉 -->
    <build>
        <resources>
            <resource>
                <directory>src/main/java</directory>
                <includes>
                    <include>**/*.properties</include>
                    <include>**/*.xml</include>
                </includes>
                <filtering>false</filtering>
            </resource>
        </resources>
    </build>

</project>

四、快速配置編碼過濾和資源載入

打開 web.xml 文件,快速配置開啟 Spring 、SpringMVC 編碼過濾以及靜態資源載入,具體配置代碼如下:

<web-app>
  <display-name>Archetype Created Web Application</display-name>
  
  <!-- 啟動Spring的容器  -->
  <context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath:applicationContext.xml</param-value>
  </context-param>
  <listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
  </listener>
  
  <!-- SpringMVC的前端控制器,攔截所有請求  -->
  <servlet>
    <servlet-name>mvc-dispatcher</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <init-param>
      <param-name>contextConfigLocation</param-name>
      <param-value>classpath:springmvc.xml</param-value>
    </init-param>
  </servlet>
  
  <servlet-mapping>
    <servlet-name>mvc-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>
	  <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>
  
  <!-- 載入靜態資源 -->
  <servlet-mapping>
  	<servlet-name>default</servlet-name>
  	<url-pattern>*.js</url-pattern>
  </servlet-mapping>
  
  <servlet-mapping>
  	<servlet-name>default</servlet-name>
  	<url-pattern>*.css</url-pattern>
  </servlet-mapping>
  
</web-app>

五、快速配置 Spring 配置文件

在 resources 文件夾下新建 applicationContext.xml 文件,配置 MyBatis 和資料庫相關信息,具體代碼配置如下:

<?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:tx="http://www.springframework.org/schema/tx"
	xsi:schemaLocation="http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.3.xsd
		http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
		http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.3.xsd
		http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd">
	
	<!-- 載入資源文件 -->
	<context:property-placeholder location="classpath:db.properties"/>
	
	<!-- 配置 C3P0 數據源 -->
	<bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
		<property name="user" value="${jdbc.user}"></property>
		<property name="password" value="${jdbc.password}"></property>
		<property name="driverClass" value="${jdbc.driverClass}"></property>
		<property name="jdbcUrl" value="${jdbc.jdbcUrl}"></property>
		<property name="initialPoolSize" value="5"></property>
		<property name="maxPoolSize" value="10"></property>
	</bean>
	
	<!-- 配置 MyBatis SqlSessionFactory -->
	<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
		<!-- 指定 MyBatis 數據源 -->
		<property name="dataSource" ref="dataSource"/>
		<!-- 指定 MyBatis mapper 映射文件位置 -->
		<property name="mapperLocations" value="classpath:com/ssm/example/dao/*.xml"/>
		<!-- 指定 MyBatis 全局配置文件的位置 -->
		<property name="configLocation" value="classpath:mybatis-config.xml"></property>
	</bean>
	
	<!-- 掃描 MyBatis 的 mapper 介面 -->
	<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
		<!--掃描所有 dao 介面,加入到 IOC 容器中 -->
		<property name="basePackage" value="com.ssm.example.dao"/>
	</bean>
	
	<!-- 配置事務管理器 -->
    <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
        <!-- 指定數據源 -->
        <property name="dataSource" ref="dataSource"></property>
    </bean>
    
    <!-- 配置事務增強  -->
    <tx:advice id="txAdvice" transaction-manager="transactionManager">
        <tx:attributes>
            <!-- 配置所有方法都是事務方法 -->
            <tx:method name="*"/>
            <tx:method name="get*" read-only="true"/>
        </tx:attributes>
    </tx:advice>
	
	<!-- 開啟基於註解的事務  -->
    <aop:config>
        <!-- 切入點表達式 -->
        <aop:pointcut expression="execution(* com.ssm.example.service.impl.*.*(..))" id="txPoint"/>
        <!-- 配置事務增強 -->
        <aop:advisor advice-ref="txAdvice" pointcut-ref="txPoint"/>
    </aop:config>
</beans>

六、快速配置資料庫連接信息

在 resources 文件夾下新建 db.properties 文件,配置資料庫連接相關信息,具體代碼配置如下:

jdbc.jdbcUrl=jdbc:mysql://localhost:3306/ssm_example?useUnicode=true&characterEncoding=UTF-8
jdbc.driverClass=com.mysql.jdbc.Driver
jdbc.user=root
jdbc.password=root

七、快速配置資料庫操作輔助信息

在 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>
		<!-- 列印SQL-->
		<setting name="logImpl" value="STDOUT_LOGGING" />
	</settings>
	
	<typeAliases>
		<!-- 指定一個包名,MyBatis會在包名下搜索需要的JavaBean-->
		<package name="com.ssm.example.entity"/>
	</typeAliases>
	
</configuration>

八、快速配置 SpringMVC 註解掃描和視圖解析器

在 resources 文件夾下新建 springmvc.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:mvc="http://www.springframework.org/schema/mvc"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
        http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd">
	
	<!-- 啟用 SpringMVC 註解驅動 -->
	<mvc:annotation-driven />
	
	<!-- 掃描業務代碼 -->
    <context:component-scan base-package="com.ssm.example"></context:component-scan>
    
    <!-- 配置視圖解析器 -->
    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
		<property name="prefix" value="/"></property>
		<property name="suffix" value=".jsp"></property>
	</bean>
    
</beans>

九、快速新建數據表

新建 MySQL 資料庫,快速新建數據表 ssm_example,具體建表代碼如下:

DROP TABLE IF EXISTS `student`;
CREATE TABLE `student`  (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
  `gender` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
  `email` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
  `tel` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
  `cla` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 6 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Compact;

INSERT INTO `student` VALUES (1, '孔乙己', '男', '[email protected]', '13509856897', '電腦1班');
INSERT INTO `student` VALUES (2, '阿強', '女', '[email protected]', '12345678909', '軟體工程');
INSERT INTO `student` VALUES (3, '阿福', '男', '[email protected]', '13657898762', '數學專業');
INSERT INTO `student` VALUES (4, '阿霞', '女', '[email protected]', '12378645987', '英語專業');
INSERT INTO `student` VALUES (5, '指南者', '男', '[email protected]', '13587690873', '打雜搬磚專業');

SET FOREIGN_KEY_CHECKS = 1;

十、快速新建實體類

快速新建實體類 Student.java,具體代碼如下:

package com.ssm.example.entity;

public class Student {
	
	private int id;
	private String name;
	private String gender;
	private String email;
	private String tel;
	private String cla;
	
	public int getId() {
		return id;
	}
	public void setId(int id) {
		this.id = id;
	}
	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}
	public String getGender() {
		return gender;
	}
	public void setGender(String gender) {
		this.gender = gender;
	}
	public String getEmail() {
		return email;
	}
	public void setEmail(String email) {
		this.email = email;
	}
	public String getTel() {
		return tel;
	}
	public void setTel(String tel) {
		this.tel = tel;
	}
	public String getCla() {
		return cla;
	}
	public void setCla(String cla) {
		this.cla = cla;
	}
	
	
}

十一、快速書寫業務代碼

快速新建 StuentController.java 控制類,具體代碼如下:

package com.ssm.example.controller;

import java.util.List;

import com.ssm.example.entity.Student;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;

import com.ssm.example.service.StudentService;

@Controller
public class StudentController {

	@Autowired
	private StudentService studentService;
	
	/**
	 * 查找所有學生
	 * @return
	 */
	@RequestMapping(value="/findAll")
	public ModelAndView test(){
		List<Student> list = studentService.findAll();
		ModelAndView modelAndView = new ModelAndView();
		modelAndView.setViewName("index");
		modelAndView.addObject("list", list);
		return modelAndView;
	}
	
}

快速新建 StudentService.java 介面,代碼如下:

package com.ssm.example.service;

import java.util.List;

import com.ssm.example.entity.Student;

public interface StudentService {
	public List<Student> findAll();
}

快速新建 StudentServiceImpl.java 類實現介面,具體代碼如下:

package com.ssm.example.service.impl;

import java.util.List;

import com.ssm.example.dao.StudentDAO;
import com.ssm.example.entity.Student;
import com.ssm.example.service.StudentService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

@Service
public class StudentServiceImpl implements StudentService {

	@Autowired
	private StudentDAO studentDAO;
	
	public List<Student> findAll() {
		// TODO Auto-generated method stub
		return studentDAO.findAll();
	}
	
}

快速新建 dao 介面 StudentDAO.java,具體代碼如下:

package com.ssm.example.dao;

import java.util.List;

import com.ssm.example.entity.Student;

public interface StudentDAO {
	public List<Student> findAll();
}

快速新建 dao 介面代理文件 StudentDAO.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.ssm.example.dao.StudentDAO">

		<resultMap type="Student" id="studentMap">
			<id property="id" column="id"/>
			<result property="name" column="name"/>
			<result property="gender" column="gender"/>
			<result property="email" column="email"/>
			<result property="tel" column="tel"/>
			<result property="cla" column="cla"/>
		</resultMap>

		<select id="findAll" resultMap="studentMap">
			select * from student
		</select>

	</mapper>

十二、新建訪問頁面

快速新建訪問頁面 index.jsp,並且頁面使用 bootstrap 框架作輕度渲染,具體代碼如下:

<%@ page language="java" contentType="text/html; charset=UTF-8"
	pageEncoding="UTF-8"%>
<%@ page isELIgnored="false" %>
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>學生列表</title>
<link rel="stylesheet" href="${pageContext.request.contextPath}/static/bootstrap-3.3.7-dist/css/bootstrap.min.css">
</head>
<body>
<br><br><br>
	<div class="container" align="center">
		<div class="row">
			<div class="col-md-12">
				<h1>SSM 框架快速整合實例--學生查詢</h1>
			</div>
		</div>
		<br>
		<div class="row">
			<div class="col-md-12">
				<table class="table table-hover" id="emps_table">
					<thead>
						<tr>
							<th>
								<input type="checkbox" id="check_all"/>
							</th>
							<th>編號</th>
							<th>姓名</th>
							<th>性別</th>
							<th>電子郵箱</th>
							<th>聯繫電話</th>
							<th>班級</th>
							<th>操作</th>
						</tr>
					</thead>
					<tbody>
						<c:forEach items="${list }" var="student">
							<tr>
								<td><input type='checkbox' class='check_item'/></td>
								<td>${student.id }</td>
								<td>${student.name }</td>
								<td>${student.gender }</td>
								<td>${student.email }</td>
								<td>${student.tel }</td>
								<td>${student.cla }</td>

								<td>
									<button class="btn btn-primary btn-sm edit_btn">
										<span class="glyphicon glyphicon-pencil">編輯</span>
									</button>  
									<button class="btn btn-danger btn-sm delete_btn">
										<span class="glyphicon glyphicon-trash">刪除</span>
									</button>
								</td>
							</tr>
						</c:forEach>
					</tbody>
				</table>
			</div>
		</div>
		
	</div>
</body>
</html>

十三、快速進行測試

到這裡,SSM 框架整合程式就已經書寫完畢,部署並啟動 Tomcat 伺服器,然後到瀏覽器地址欄測試,結果如下:

項目源碼地址:點擊這裡直接獲取源碼


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

-Advertisement-
Play Games
更多相關文章
  • 互聯網時代里,網路爬蟲是一種高效地信息採集利器,可以快速準確地獲取網上的各種數據資源。本文使用Python庫requests、Beautiful Soup爬取CSDN博客的相關信息,利用txt文件轉存。 基礎知識: 網路爬蟲是一種高效地信息採集利器,利用它可以快速、準確地採集互聯網上的各種數據資源, ...
  • 1.URL訪問過濾 通過裝飾器進行用戶認證非常方便,但是在添加部分需要認證的功能時,就需要再次添加裝飾器,如果通過中間件來實現,就不需要再進行添加的操作. 2.做IP訪問頻率限制 為了防止某些IP惡意高頻訪問伺服器,可以對這些IP進行限制,進行攔截. python import time class ...
  • 複製文件: 例如: 這是Java 的API(註意:沒有copy(String,String);的方法的!): 移動文件(複製並刪除源文件): 例如: 如果目標路徑已經存在,複製或移動將失敗,拋出異常java.nio.file.FileAlreadyExistsException。 覆蓋已有的目標路徑 ...
  • 從今年10月22號開始我的python學習之路,一個月下來,磕磕碰碰,勉勉強強把基礎部分算是學完了,一個月走過來,我過著別人看似單調,重覆的生活,確實是,每天,每周都是一樣的生活模式,早上7點40起床,吃個早餐,8點到達教室,中午1點去吃個午飯,然後回到教室,下午6點去吃個晚飯,然後回到教室,待到晚 ...
  • 一、String類是什麼 由第一段源碼可知,String是一個final類,底層實現是final的字元數組,一旦創建,無法改變。 字元串是常量;他們的值在創建之後不能改變。字元串緩衝區支持可變的字元串。因為String對象是不可變的,所以可以共用。 二、如何創建 String s1 = "abc"; ...
  • 一、什麼是中間件 請求和響應之間的一道屏障 作用:控制請求和響應 Django預設的中間件 :(在django項目的setting模塊中,有一個 MIDDLEWARE_CLASS變數,其中每一個元素就是一個中間件 ) 每一個中間件都有具體的功能 二 、自定義中間件 中間件主要有幾個方法: 中間件執行 ...
  • 安裝依賴環境 下載python3 centos系統下安裝 安裝python3 報錯處理 ...
  • 第一階段 (J2SE java基礎部分 ) 1. java開發前奏 a.Java語言發展簡史以及開發環境的搭建,體驗Java程式的開發,環境變數的設置,程式的執行過程,b. 相關反編譯工具介紹,java開發工具Eclipse的安裝和使用,javadoc的說明。2.Java基礎語法 a.ava語法格式 ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...