Tag:spring boot

  • The Appeal of Auto-assembly: Spring Boot vs Traditional Spring

    Time:2024-5-30

    What are some of the certificates in the IT industry that are highly valued? Article Catalog What are some of the certificates in the IT industry that are highly valued? preamble make a distinction Project Configuration: Dependency management: Embedded server: Development Experience: an actual example Sample Spring project: Sample Spring Boot project: summarize Column Highlights […]

  • springboot integration vosk to achieve simple voice recognition function

    Time:2024-5-9

    vosk open source speech recognition Vosk is the open source speech recognition toolkit.Things that Vosk supports include: Nineteen languages are supported – Chinese, English, Indian English, German, French, Spanish, Portuguese, Russian, Turkish, Vietnamese, Italian, Dutch, Catalan, Arabic, Greek, Persian, Filipino, Ukrainian, Kazakh. Work offline on mobile devices – Raspberry Pi, Android, iOS. Install it with […]

  • SpringBoot [SpringBoot] springboot auto-assembly principles

    Time:2024-4-28

    Article Catalog What is automated assembly SpringBoot auto-assembly concrete operation What is automated assembly Auto-Configuration is one of the core features of the Spring Boot framework.It automatically configures and assembles the various components required by a Spring application by scanning the application’s classpath and dependencies. In traditional Spring applications , developers need to manually configure […]

  • SpringBoot Dynamic Timed Tasks

    Time:2024-3-7

    The timed task function in this article (Add, delete, change, start, pause) Without further ado, straight to the code, you guys can use it with direct CV!!!! Thread pool configuration class for executing timed tasks import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.scheduling.TaskScheduler; import org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler; @Configuration public class SchedulingConfig { @Bean public TaskScheduler taskScheduler() { ThreadPoolTaskScheduler taskScheduler […]

  • SpringBoot – LiteFlow Engine Framework

    Time:2024-3-5

    Introduction to LiteFlow LiteFlowanLightweight and powerful domestic rules engine frameworkIt can be used in the area of orchestration for complex componentized businesses. Helps make systems silky smooth and flexible. UtilizingLiteFlowYou can transform the waterfall code into a component as the core concept of the code structure, the benefit of this structure is that it can […]

  • [Spring]SpringBoot Unified Function Processing

    Time:2024-2-27

    Article Catalog preamble1. Interceptor1.1 What is an interceptor1.2 Use of interceptors1.2.1 Customizing Interceptors1.2.2 Registering a Configuration Interceptor 1.3 Interceptor Explained1.3.1 Intercepting paths1.3.2 Interceptor Execution Flow1.3.3 Adapter model 2. Harmonization of data return formats3. Harmonization of exception handling preamble In the daily use of the Spring framework for development, for some boards, you may need to […]

  • springboot oriental (tongweb) replace tomcat

    Time:2024-2-8

    I. Modify pom.xml file dependencies 1. Excluding built-in tomcat dependencies in springboot2. Add tongweb-spring-boot-starter and tongweb-embed dependencies Special note: I have all the dependent packages passed to the private repository, directly copying to the pom.xml file will fail to import. <! — SpringBoot Web Container –> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <! — Exclude self-contained tomcat dependencies […]

  • Remote debugging with springboot server-side? Try HTTP for service listening

    Time:2023-12-22

    Article Catalog preamble 1. Local environment setup 1.1 Environmental parameters 1.2 Build springboot service project 2. Intranet penetration 2.1 Installing and configuring cpolar intranet penetration 2.1.1 windows 2.1.2 linux 2.2 Creating a Tunnel to Map Local Ports 2.3 Testing public network addresses 3. Fixed public network address 3.1 Reservation of a second-level subdomain 3.2 Configuring […]

  • [Spring] AOP Transaction Management

    Time:2023-11-18

    I. AOP transaction management 1.Introduction to Spring transactions 1. Introduction to relevant concepts Transaction role: in the data layer to ensure that a series of database operations with the success of the same failure Spring Transaction Role: The data layer orbusiness layer Guarantees that a series of database operations will both succeed and fail We […]

  • Wakefield Framework SpringBoot+Activiti Workflow Usage

    Time:2023-10-11

    Introduction: This technology point is mainly for the class approval business process modeling, there can be: task release (i.e., the beginning of the process) to a level of approval to the final end (i.e., the end of the process) a complete set of models 1、idea download activiti plugin Previous versions of ider downloaded actiBPM, but […]