Updated few Topics in Java and JavaScript (#2083)
* Updated isLooselyEqual operator Updated isLooselyEqual operator * Updated strictly equal operator Updated strictly equal operator * Updated Same Value Updated Same Value * Updated Same Valued Zero Updated Same Valued Zero * Update content/roadmaps/106-javascript/content/105-javascript-equality-comparisons/100-equality-algorithms/100-is-loosely-equal.md * Update content/roadmaps/106-javascript/content/105-javascript-equality-comparisons/100-equality-algorithms/101-is-strictly-equal.md * Update content/roadmaps/106-javascript/content/105-javascript-equality-comparisons/100-equality-algorithms/103-same-value.md * Update 103-spark.md * Update 102-ant.md * Update 103-spark.md * Update 102-slf4j.md * Update 100-log4j2.md * Update 101-logback.md * Update 103-tinylog.md Co-authored-by: Kamran Ahmed <kamranahmed.se@gmail.com>pull/2088/head
parent
502decb530
commit
01c61a57bd
6 changed files with 39 additions and 6 deletions
@ -1 +1,6 @@ |
||||
# Ant |
||||
# Ant |
||||
|
||||
Ant is a Java-based build tool created as part of the Apache open-source project. You can think of it as a Java version of make. Ant scripts have a structure and are written in XML. Similar to make, Ant targets can depend on other targets. |
||||
|
||||
<ResourceGroupTitle>Reference Resource</ResourceGroupTitle> |
||||
<BadgeLink colorScheme='blue' badgeText='Official Website' href='https://ant.apache.org/'>Ant Website</BadgeLink> |
||||
|
@ -1 +1,7 @@ |
||||
# Spark |
||||
# Spark |
||||
|
||||
Spark is a Java micro framework that allows to quickly create web applications in Java 8. Spark is a lightweight and simple Java web framework designed for quick development. Sinatra, a popular Ruby micro framework, was the inspiration for it. |
||||
|
||||
<ResourceGroupTitle>Reference Resource</ResourceGroupTitle> |
||||
<BadgeLink colorScheme='blue' badgeText='Official Website' href='https://spark.apache.org/docs/0.9.1/java-programming-guide.html'>Official Website</BadgeLink> |
||||
<BadgeLink colorScheme='blue' badgeText='Javatpoint Website' href='https://www.javatpoint.com/spark-java#:~:text=Spark%20is%20a%20Java%20micro,was%20the%20inspiration%20for%20it.'>Javatpoint Website</BadgeLink> |
||||
|
@ -1 +1,8 @@ |
||||
# Log4j2 |
||||
# Log4j2 |
||||
|
||||
Apache Log4j is a Java-based logging utility. Log4j Java library's role is to log information that helps applications run smoothly, determine what's happening, and help with the debugging process when errors occur. Logging libraries typically write down messages to the log file or a database. |
||||
|
||||
Log4j2 is the updated version of the popular and influential log4j library, used extensively throughout the Java ecosystem for so many years. Version 2. x keeps all the logging features of its predecessor and builds on that foundation with some significant improvements, especially in the area of performance. |
||||
|
||||
<ResourceGroupTitle>Reference Resource</ResourceGroupTitle> |
||||
<BadgeLink colorScheme='blue' badgeText='Official Website' href='https://logging.apache.org/log4j/2.x/manual/configuration.html'>Official Website</BadgeLink> |
||||
|
@ -1 +1,6 @@ |
||||
# Logback |
||||
# Logback |
||||
|
||||
Logback is one of the most widely used logging frameworks in the Java Community. It's a replacement for its predecessor, Log4j. Logback offers a faster implementation, provides more options for configuration, and more flexibility in archiving old log files. |
||||
|
||||
<ResourceGroupTitle>Reference Resource</ResourceGroupTitle> |
||||
<BadgeLink colorScheme='blue' badgeText='Official Website' href='https://logback.qos.ch/manual/configuration.html'>Official Website</BadgeLink> |
||||
|
@ -1 +1,6 @@ |
||||
# Slf4j |
||||
# Slf4j |
||||
|
||||
The SLF4J or the Simple Logging Facade for Java is an abstraction layer for various Java logging frameworks, like Log4j 2 or Logback. This allows for plugging different logging frameworks at deployment time without the need for code changes. |
||||
|
||||
<ResourceGroupTitle>Reference Resource</ResourceGroupTitle> |
||||
<BadgeLink colorScheme='blue' badgeText='Official Website' href='https://www.slf4j.org/'>Official Website</BadgeLink> |
||||
|
@ -1 +1,6 @@ |
||||
# Tinylog |
||||
# Tinylog |
||||
|
||||
Tinylog is a lightweight open-source logging framework for Java and Android, optimized for ease of use. |
||||
|
||||
<ResourceGroupTitle>Reference Resource</ResourceGroupTitle> |
||||
<BadgeLink colorScheme='blue' badgeText='Official Website' href='https://tinylog.org/v1/'>Official Website</BadgeLink> |
||||
|
Loading…
Reference in new issue