bremersee-fac-data-mongodb

Enter description here

Лицензия

Лицензия

Категории

Категории

MongoDB Данные Базы данных
Группа

Группа

org.bremersee
Идентификатор

Идентификатор

bremersee-fac-data-mongodb
Последняя версия

Последняя версия

1.1.3
Дата

Дата

Тип

Тип

jar
Описание

Описание

bremersee-fac-data-mongodb
Enter description here
Ссылка на сайт

Ссылка на сайт

http://bremersee.github.io/fac/bremersee-fac-data-mongodb/
Организация-разработчик

Организация-разработчик

bremersee.org

Скачать bremersee-fac-data-mongodb

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/org.bremersee/bremersee-fac-data-mongodb/ -->
<dependency>
    <groupId>org.bremersee</groupId>
    <artifactId>bremersee-fac-data-mongodb</artifactId>
    <version>1.1.3</version>
</dependency>
// https://jarcasting.com/artifacts/org.bremersee/bremersee-fac-data-mongodb/
implementation 'org.bremersee:bremersee-fac-data-mongodb:1.1.3'
// https://jarcasting.com/artifacts/org.bremersee/bremersee-fac-data-mongodb/
implementation ("org.bremersee:bremersee-fac-data-mongodb:1.1.3")
'org.bremersee:bremersee-fac-data-mongodb:jar:1.1.3'
<dependency org="org.bremersee" name="bremersee-fac-data-mongodb" rev="1.1.3">
  <artifact name="bremersee-fac-data-mongodb" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.bremersee', module='bremersee-fac-data-mongodb', version='1.1.3')
)
libraryDependencies += "org.bremersee" % "bremersee-fac-data-mongodb" % "1.1.3"
[org.bremersee/bremersee-fac-data-mongodb "1.1.3"]

Зависимости

compile (3)

Идентификатор библиотеки Тип Версия
org.bremersee : bremersee-fac-api jar 1.1.3
org.springframework.data : spring-data-mongodb jar
org.projectlombok : lombok jar 1.16.10

test (5)

Идентификатор библиотеки Тип Версия
junit : junit jar
com.fasterxml.jackson.core : jackson-databind jar
org.apache.logging.log4j : log4j-slf4j-impl jar
org.apache.logging.log4j : log4j-api jar
org.apache.logging.log4j : log4j-core jar

Модули Проекта

Данный проект не имеет модулей.

Bremersee Failed Access Counter

This project contains a small protection against brute-force-attacks.

A failed access counter stores failed access entries of a resource for a remote host, that wants to access the resource. The resource may be, for example, the login page. When the login has failed, this may be stored in the failed access counter. When the counter of the failed access entry has reached a threshold the login can be blocked for a while.

The failed access counter needs a DAO (interface FailedAccessDao) to persist the failed access entries. Currently there are four DAO implementations available:

  • FailedAccessInMemoryDao: Persists the entries in memory.
  • FailedAccessJpaDao: Persists the entries in a SQL database.
  • FailedAccessLdapDao: Persists the entries in a LDAP server.
  • FailedAccessMongoDao: Persists the entries in a MongoDB.

The generated maven site is committed to the gh-pages branch and visible here. There you can find more information.

Release 1.1.3

Release 1.1.3 is available at Maven Central.

It consists of four modules:

API module
<dependency>
    <groupId>org.bremersee</groupId>
    <artifactId>bremersee-fac-api</artifactId>
    <version>1.1.3</version>
</dependency>
JPA module
<dependency>
    <groupId>org.bremersee</groupId>
    <artifactId>bremersee-fac-data-jpa</artifactId>
    <version>1.1.3</version>
</dependency>
LDAP module
<dependency>
    <groupId>org.bremersee</groupId>
    <artifactId>bremersee-fac-data-ldap</artifactId>
    <version>1.1.3</version>
</dependency>
MongoDB module
<dependency>
    <groupId>org.bremersee</groupId>
    <artifactId>bremersee-fac-data-mongodb</artifactId>
    <version>1.1.3</version>
</dependency>

Bremersee Failed Access Counter Example

This project contains for each DAO a small Spring Boot Application that demonstrates the usage and configuration of the Failed Access Counter library.

It's not available at Maven Central. You may check it out and build the application with

$ cd fac/bremersee-fac-example
$ mvn clean install

Than go to one of the modules and run the application (all examples use an in-memory storage):

$ cd bremersee-fac-example-ldap
$ mvn spring-boot:run

After the application is started you can open http://localhost:8080/entries.html in your favorite browser and have a look at the demonstration.

Версии библиотеки

Версия
1.1.3
1.1.2
1.1.1
1.1.0