[Server-side performance test] Performance test implementation process!

Performance testing uses automated testing tools to simulate a variety of normal, peak, and abnormal load conditions to test various performance indicators of the system. My definition of performance testing clearly describes the methods and processes of performance testing: Performance testing aims at system performance indicators, establishes performance testing models, formulates performance testing plans, develops […]

Chat2DB Web version server-side installation, deployment and startup process

Directory Preface Installation and deployment process Download the installation package Download JDK17 start up Log in Possible errors Startup error: Java version is low flyway bean creation failed Login failed Unable to execute binary file Foreword Chat2DB is a database connection tool. It mainly uses JDBC for database connection, and also connects to several chat […]

Front-end application State Transfer troubleshooting case for server-side rendering based on Angular Universal engine

The author’s previous nugget article, a SAP development engineer’s 2022 year-end summary: Forty years old, mentioned that my current team is responsible for developing an e-commerce Storefront application based on the Angular framework. The Storefront is an open source Angular application based on Angular and Bootstrap and built for SAP Commerce Cloud. Figure 1: Spartacus […]

C++ project – cloud backup-⑦-Design and implementation of server-side business processing module

Article directory Column introduction 1.Business processing implementation ideas 2. Network communication interface design 2.1 File upload request 2.2 File list acquisition request 2.3 File download request 3. Business processing design 4. Business processing class implementation and organization Introduction to the column About the author: Hua Xiangyun, undergraduate student One, a rising star creator in the […]

C++ project – cloud backup-⑤-Design and implementation of server-side data management module

Article directory Column introduction 1. What data needs to be managed? 2. How to manage data 3. Design and implementation of data information structure 4.Data management design 5. Data management class implementation 6. Data management module organization Introduction to the column About the author: Hua Xiangyun, undergraduate student, C /C++ Rising Star Creator, Rising Star […]

C++ project – cloud backup – ③ – Design and implementation of server-side utility tools

Article directory Column introduction 1. Design of file utility class 2. Implementation of file utility class 2.1 Prerequisite knowledge supplement 2.1.1Introduction to struct stat and stat 2.1.2std::experimental::filesystem understanding 2.2FileUtil implementation 3. Design of JSON utility class 4. Implementation of JSON utility class 5. Organizing practical tools Introduction to the column About the author: Hua Xiangyun, […]

React server-side rendering

1. What is it In SSR (opens new window), we learned about Server-Side Rendering, referred to as SSR, which means server-side rendering Refers to the page processing technology that completes the HTML structure splicing of the page on the server side, sends it to the browser, and then binds status and events to it to […]

4.7.18-Testing_for_Server-side_Template_Injection

Testing for Server-side Template Injection ID WSTG-INPV-18 Summary Web applications commonly use server-side templating technologies (Jinja2, Twig, FreeMaker, etc.) to generate dynamic HTML responses. Server-side Template Injection vulnerabilities (SSTI) occur when user input is embedded in a template in an unsafe manner and results in remote code execution on the server. Any features that support […]

[Java] Server-side message push summary

Preface: When building a real-time message push function, choosing the right solution is crucial to developing efficient real-time applications. The push of messages is nothing more than push and pull data models. This article will introduce four common real-time message push solutions: short polling (pull), long polling (pull), SSE (Server-Sent Events) (push) and WebSocket (Push), […]