MVN

org.jpasecurity : jpasecurity

Maven & Gradle

Jan 04, 2023
15 stars

JPA Security · JPA Security is an Access Control Solution for the Java Persistence API (JPA). With JPA Security your access control can be performed in the database. You may query the database for all objects of a certain type and will receive only the objects you have read access for. This filtering is performed in the database. Unaccessible queried objects will not be loaded into memory. JPA Security enables you to completely remove security-related code from your code-base. All access control may be configured via Annotations or XML. With JPA Security you do not have to change your access control paradigm (but maybe you want to, when you see the great capability of JPA Security). You even can mix access control paradigms easily. JPA Security is not designed to replace current security solutions, but to extend them. It integrates smoothly into the security mechanisms of the Java EE Platform, but may be used with third-party frameworks like Spring Security or in Java SE, too. With the extensibility of JPA Security it is easy to provide your own access control paradigm, access rules storage or login mechanism.

<dependency>
    <groupId>org.jpasecurity</groupId>
    <artifactId>jpasecurity</artifactId>
    <version>1.0.3</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.jpasecurity : jpasecurity to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.0.3

All Versions

Choose a version of org.jpasecurity : jpasecurity to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.0.x
jpasecurity-1.0.3
jpasecurity-1.0.2
jpasecurity-1.0.1
jpasecurity-1.0.0

How to add a dependency to Maven

Add the following org.jpasecurity : jpasecurity maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>org.jpasecurity</groupId>
    <artifactId>jpasecurity</artifactId>
    <version>1.0.3</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following org.jpasecurity : jpasecurity gradle dependency to your build.gradle file:

implementation 'org.jpasecurity:jpasecurity:1.0.3'

Gradle Kotlin DSL: Add the following org.jpasecurity : jpasecurity gradle kotlin dependency to your build.gradle.kts file:

implementation("org.jpasecurity:jpasecurity:1.0.3")

How to add a dependency to SBT Scala

SBT Scala: Add the following org.jpasecurity : jpasecurity sbt scala dependency to your build.sbt file:

libraryDependencies += "org.jpasecurity" % "jpasecurity" % "1.0.3"

Advertisement