com.github.xinlc:lock4j-spring-boot-autoconfigure

Spring Boot autoconfigure

License

License

Categories

Categories

Spring Boot Container Microservices Auto Application Layer Libs Code Generators config Configuration
GroupId

GroupId

com.github.xinlc
ArtifactId

ArtifactId

lock4j-spring-boot-autoconfigure
Last Version

Last Version

1.0.1
Release Date

Release Date

Type

Type

jar
Description

Description

Spring Boot autoconfigure

Download lock4j-spring-boot-autoconfigure

How to add to project

<!-- https://jarcasting.com/artifacts/com.github.xinlc/lock4j-spring-boot-autoconfigure/ -->
<dependency>
    <groupId>com.github.xinlc</groupId>
    <artifactId>lock4j-spring-boot-autoconfigure</artifactId>
    <version>1.0.1</version>
</dependency>
// https://jarcasting.com/artifacts/com.github.xinlc/lock4j-spring-boot-autoconfigure/
implementation 'com.github.xinlc:lock4j-spring-boot-autoconfigure:1.0.1'
// https://jarcasting.com/artifacts/com.github.xinlc/lock4j-spring-boot-autoconfigure/
implementation ("com.github.xinlc:lock4j-spring-boot-autoconfigure:1.0.1")
'com.github.xinlc:lock4j-spring-boot-autoconfigure:jar:1.0.1'
<dependency org="com.github.xinlc" name="lock4j-spring-boot-autoconfigure" rev="1.0.1">
  <artifact name="lock4j-spring-boot-autoconfigure" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.github.xinlc', module='lock4j-spring-boot-autoconfigure', version='1.0.1')
)
libraryDependencies += "com.github.xinlc" % "lock4j-spring-boot-autoconfigure" % "1.0.1"
[com.github.xinlc/lock4j-spring-boot-autoconfigure "1.0.1"]

Dependencies

compile (2)

Group / Artifact Type Version
com.github.xinlc : lock4j-core jar 1.0.1
org.springframework.boot : spring-boot-configuration-processor Optional jar 2.2.5.RELEASE

Project Modules

There are no modules declared in this project.

Related Libraries

lock4j

Distributed lock implementation using Redis and Zookeeper.(基于 Redis 和 Zookeeper 分布式锁实现)

Quick Start

Below is a simple demo. Talk is cheap. Show me the code.

1. Add Dependency

If your're using Maven, just add the following dependency in pom.xml.

<!-- replace here with the latest version -->
<dependency>
    <groupId>com.github.xinlc</groupId>
    <artifactId>lock4j-spring-boot-starter</artifactId>
    <version>1.0.1</version>
</dependency>

If not, you can download JAR in Maven Center Repository.

2. Define Controller

@DistributedLockable(
        prefix = "hello",
        argNames = {"name"},
        expireTime = 10,
        unit = TimeUnit.SECONDS,
        onFailure = HelloLockException.class
)
@GetMapping
public void hello(@RequestParam("name") String name) {
    log.info("hello {}", name);
}

More examples.

TODO

  • Zookeeper implementation.

Versions

Version
1.0.1
1.0.0