OGNL.
OGNL stands for Object-Graph Navigation Language; it is an expression language for getting and setting properties of Java objects..
Here is the list of declaration for ognl. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>ognl</groupId> <artifactId>ognl</artifactId> <version>2.6.9</version> </dependency>
If you think this Maven repository POM file listing for ognl is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:BSD License
URL: http://www.opensource.org/licenses/bsd-license.php.
The following table lists the most popular artifacts which are depending on ognl-2.6.9. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
ORM | mybatis 3.1.0 The MyBatis data mapper framework makes it easier to use a relational database with object-oriented applications. MyBatis couples objects with stored procedures or SQL statements using a XML descriptor or annotations. Simplicity is the biggest advantage of the MyBatis data mapper over objec... | 24 |
ORM | mybatis 3.1.1 The MyBatis data mapper framework makes it easier to use a relational database with object-oriented applications. MyBatis couples objects with stored procedures or SQL statements using a XML descriptor or annotations. Simplicity is the biggest advantage of the MyBatis data mapper over objec... | 17 |
Spring | spring-webflow 1.0.5 Spring Web Flow | 15 |
ORM | mybatis 3.2.6 The MyBatis data mapper framework makes it easier to use a relational database with object-oriented applications. MyBatis couples objects with stored procedures or SQL statements using a XML descriptor or annotations. Simplicity is the biggest advantage of the MyBatis data mapper over objec... | 12 |
The following packages are defined in the ognl-2.6.9.jar
ognl
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>ognl</groupId> <artifactId>ognl</artifactId> <version>2.6.9</version> <packaging>jar</packaging> <name>OGNL</name> <description>OGNL stands for Object-Graph Navigation Language; it is an expression language for getting and setting properties of Java objects.</description> <url>http://www.ognl.org/</url> <licenses> <license> <name>BSD License</name> <url>http://www.opensource.org/licenses/bsd-license.php</url> <distribution>repo</distribution> </license> </licenses> </project>