Merge pull request #12754 from collaboratewithakash/master
back links fixed on github
This commit is contained in:
commit
291848e835
|
@ -5,7 +5,7 @@ This module contains articles about algorithms. Some classes of algorithms, e.g.
|
|||
|
||||
### Relevant articles:
|
||||
|
||||
- [Validating Input With Finite Automata in Java](https://www.baeldung.com/java-finite-automata)
|
||||
- [Validating Input with Finite Automata in Java](https://www.baeldung.com/java-finite-automata)
|
||||
- [Example of Hill Climbing Algorithm in Java](https://www.baeldung.com/java-hill-climbing-algorithm)
|
||||
- [Introduction to Minimax Algorithm with a Java Implementation](https://www.baeldung.com/java-minimax-algorithm)
|
||||
- [How to Calculate Levenshtein Distance in Java?](https://www.baeldung.com/java-levenshtein-distance)
|
||||
|
|
|
@ -12,4 +12,4 @@ This module contains articles about various Apache libraries and utilities
|
|||
- [Getting Started with Java and Zookeeper](https://www.baeldung.com/java-zookeeper)
|
||||
- [Introduction to Apache Curator](https://www.baeldung.com/apache-curator)
|
||||
- [A Quick Guide to Apache Geode](https://www.baeldung.com/apache-geode)
|
||||
- [Guide to Solr in Java with Apache Solrj](https://www.baeldung.com/apache-solrj)
|
||||
- [Guide To Solr in Java With Apache SolrJ](https://www.baeldung.com/apache-solrj)
|
||||
|
|
|
@ -9,6 +9,6 @@ This module contains articles about Java 10 core features
|
|||
- [Copy a List to Another List in Java](http://www.baeldung.com/java-copy-list-to-another)
|
||||
- [Deep Dive Into the New Java JIT Compiler – Graal](https://www.baeldung.com/graal-java-jit-compiler)
|
||||
- [Copying Sets in Java](https://www.baeldung.com/java-copy-sets)
|
||||
- [Converting between a List and a Set in Java](https://www.baeldung.com/convert-list-to-set-and-set-to-list)
|
||||
- [Converting Between a List and a Set in Java](https://www.baeldung.com/convert-list-to-set-and-set-to-list)
|
||||
- [Java IndexOutOfBoundsException “Source Does Not Fit in Dest”](https://www.baeldung.com/java-indexoutofboundsexception)
|
||||
- [Collect a Java Stream to an Immutable Collection](https://www.baeldung.com/java-stream-immutable-collection)
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
This module contains articles about Java 11 core features
|
||||
|
||||
### Relevant articles
|
||||
- [Guide to Java 8 Optional](https://www.baeldung.com/java-optional)
|
||||
- [Guide To Java 8 Optional](https://www.baeldung.com/java-optional)
|
||||
- [Guide to Java Reflection](http://www.baeldung.com/java-reflection)
|
||||
- [Guide to Java 8’s Collectors](https://www.baeldung.com/java-8-collectors)
|
||||
- [New Features in Java 11](https://www.baeldung.com/java-11-new-features)
|
||||
|
@ -12,4 +12,4 @@ This module contains articles about Java 11 core features
|
|||
- [Java HTTPS Client Certificate Authentication](https://www.baeldung.com/java-https-client-certificate-authentication)
|
||||
- [Call Methods at Runtime Using Java Reflection](https://www.baeldung.com/java-method-reflection)
|
||||
- [Java HttpClient Basic Authentication](https://www.baeldung.com/java-httpclient-basic-auth)
|
||||
- [Java HttpClient With SSL](https://www.baeldung.com/java-httpclient-ssl)
|
||||
- [Java HttpClient With SSL](https://www.baeldung.com/java-httpclient-ssl)
|
||||
|
|
|
@ -5,7 +5,7 @@ This module contains complete guides about arrays in Java
|
|||
### Relevant Articles:
|
||||
- [Arrays in Java: A Reference Guide](https://www.baeldung.com/java-arrays-guide)
|
||||
- [Guide to the java.util.Arrays Class](https://www.baeldung.com/java-util-arrays)
|
||||
- [What is \[Ljava.lang.Object;?](https://www.baeldung.com/java-tostring-array)
|
||||
- [What is [Ljava.lang.Object;?](https://www.baeldung.com/java-tostring-array)
|
||||
- [Guide to ArrayStoreException](https://www.baeldung.com/java-arraystoreexception)
|
||||
- [Creating a Generic Array in Java](https://www.baeldung.com/java-generic-array)
|
||||
- [Maximum Size of Java Arrays](https://www.baeldung.com/java-arrays-max-size)
|
||||
|
|
|
@ -4,7 +4,7 @@ This module contains articles about conversions among Collection types and array
|
|||
|
||||
### Relevant Articles:
|
||||
- [Converting between an Array and a List in Java](https://www.baeldung.com/convert-array-to-list-and-list-to-array)
|
||||
- [Converting between an Array and a Set in Java](https://www.baeldung.com/convert-array-to-set-and-set-to-array)
|
||||
- [Converting Between an Array and a Set in Java](https://www.baeldung.com/convert-array-to-set-and-set-to-array)
|
||||
- [Convert a Map to an Array, List or Set in Java](https://www.baeldung.com/convert-map-values-to-array-list-set)
|
||||
- [Converting a List to String in Java](https://www.baeldung.com/java-list-to-string)
|
||||
- [How to Convert List to Map in Java](https://www.baeldung.com/java-list-to-map)
|
||||
|
@ -12,4 +12,4 @@ This module contains articles about conversions among Collection types and array
|
|||
- [Java 8 Collectors toMap](https://www.baeldung.com/java-collectors-tomap)
|
||||
- [Converting Iterable to Collection in Java](https://www.baeldung.com/java-iterable-to-collection)
|
||||
- [Converting Iterator to List](https://www.baeldung.com/java-convert-iterator-to-list)
|
||||
- More articles: [[next -->]](../core-java-collections-conversions-2)
|
||||
- More articles: [[next -->]](../core-java-collections-conversions-2)
|
||||
|
|
|
@ -4,7 +4,7 @@ This module contains articles about the Java List collection
|
|||
|
||||
### Relevant Articles:
|
||||
- [Java – Get Random Item/Element From a List](http://www.baeldung.com/java-random-list-element)
|
||||
- [Removing all nulls from a List in Java](http://www.baeldung.com/java-remove-nulls-from-list)
|
||||
- [Removing all Nulls from a List in Java](http://www.baeldung.com/java-remove-nulls-from-list)
|
||||
- [Removing all duplicates from a List in Java](http://www.baeldung.com/java-remove-duplicates-from-list)
|
||||
- [How to TDD a List Implementation in Java](http://www.baeldung.com/java-test-driven-list)
|
||||
- [Iterating Backward Through a List](http://www.baeldung.com/java-list-iterate-backwards)
|
||||
|
|
|
@ -6,7 +6,7 @@ This module contains articles about Java Concurrency that are also part of an Eb
|
|||
|
||||
- [Life Cycle of a Thread in Java](https://www.baeldung.com/java-thread-lifecycle)
|
||||
- [How to Start a Thread in Java](https://www.baeldung.com/java-start-thread)
|
||||
- [Thread's wait and notify() Methods in Java](https://www.baeldung.com/java-wait-notify)
|
||||
- [wait and notify() Methods in Java](https://www.baeldung.com/java-wait-notify)
|
||||
- [The Thread.join() Method in Java](https://www.baeldung.com/java-thread-join)
|
||||
- [Guide to the Synchronized Keyword in Java](https://www.baeldung.com/java-synchronized)
|
||||
- [Guide to the Volatile Keyword in Java](https://www.baeldung.com/java-volatile)
|
||||
|
|
|
@ -5,7 +5,7 @@ This module contains articles about date operations in Java.
|
|||
|
||||
- [Get the Current Date Prior to Java 8](https://www.baeldung.com/java-get-the-current-date-legacy)
|
||||
- [Skipping Weekends While Adding Days to LocalDate in Java 8](https://www.baeldung.com/java-localdate-add-days-skip-weekends)
|
||||
- [Checking If Two Java Dates Are on the Same Day](https://www.baeldung.com/java-check-two-dates-on-same-day)
|
||||
- [Checking if Two Java Dates are On the Same Day](https://www.baeldung.com/java-check-two-dates-on-same-day)
|
||||
- [Converting Java Date to OffsetDateTime](https://www.baeldung.com/java-convert-date-to-offsetdatetime)
|
||||
- [How to Set the JVM Time Zone](https://www.baeldung.com/java-jvm-time-zone)
|
||||
- [How to determine day of week by passing specific date in Java?](https://www.baeldung.com/java-get-day-of-week)
|
||||
|
|
|
@ -8,7 +8,7 @@ This module contains articles about types in Java
|
|||
- [Guide to the this Java Keyword](https://www.baeldung.com/java-this)
|
||||
- [Nested Classes in Java](https://www.baeldung.com/java-nested-classes)
|
||||
- [Marker Interfaces in Java](https://www.baeldung.com/java-marker-interfaces)
|
||||
- [Iterating Over Enum Values in Java](https://www.baeldung.com/java-enum-iteration)
|
||||
- [Iterating over Enum Values in Java](https://www.baeldung.com/java-enum-iteration)
|
||||
- [Attaching Values to Java Enum](https://www.baeldung.com/java-enum-values)
|
||||
- [A Guide to Java Enums](https://www.baeldung.com/a-guide-to-java-enums)
|
||||
- [Determine if an Object is of Primitive Type](https://www.baeldung.com/java-object-primitive-type)
|
||||
|
|
|
@ -4,13 +4,13 @@ This module contains articles about networking in Java
|
|||
|
||||
### Relevant Articles
|
||||
|
||||
- [Checking If a URL Exists in Java](https://www.baeldung.com/java-check-url-exists)
|
||||
- [Making a JSON POST Request with HttpURLConnection](https://www.baeldung.com/httpurlconnection-post)
|
||||
- [Checking if a URL Exists in Java](https://www.baeldung.com/java-check-url-exists)
|
||||
- [Making a JSON POST Request With HttpURLConnection](https://www.baeldung.com/httpurlconnection-post)
|
||||
- [Using Curl in Java](https://www.baeldung.com/java-curl)
|
||||
- [Do a Simple HTTP Request in Java](https://www.baeldung.com/java-http-request)
|
||||
- [Sending Emails with Java](https://www.baeldung.com/java-email)
|
||||
- [Authentication with HttpUrlConnection](https://www.baeldung.com/java-http-url-connection)
|
||||
- [Download a File from an URL in Java](https://www.baeldung.com/java-download-file)
|
||||
- [Download a File From an URL in Java](https://www.baeldung.com/java-download-file)
|
||||
- [Handling java.net.ConnectException](https://www.baeldung.com/java-net-connectexception)
|
||||
- [Getting MAC addresses in Java](https://www.baeldung.com/java-mac-address)
|
||||
- [Sending Emails with Attachments in Java](https://www.baeldung.com/java-send-emails-attachments)
|
||||
|
|
|
@ -6,10 +6,10 @@ This module contains articles about core Java non-blocking input and output (IO)
|
|||
|
||||
- [Determine File Creation Date in Java](https://www.baeldung.com/java-file-creation-date)
|
||||
- [Find the Number of Lines in a File Using Java](https://www.baeldung.com/java-file-number-of-lines)
|
||||
- [A Guide to NIO2 Asynchronous File Channel](https://www.baeldung.com/java-nio2-async-file-channel)
|
||||
- [A Guide to NIO2 FileVisitor](https://www.baeldung.com/java-nio2-file-visitor)
|
||||
- [A Guide To NIO2 Asynchronous File Channel](https://www.baeldung.com/java-nio2-async-file-channel)
|
||||
- [A Guide To NIO2 FileVisitor](https://www.baeldung.com/java-nio2-file-visitor)
|
||||
- [Guide to Java FileChannel](https://www.baeldung.com/java-filechannel)
|
||||
- [A Guide to NIO2 File Attribute APIs](https://www.baeldung.com/java-nio2-file-attribute)
|
||||
- [A Guide To NIO2 File Attribute APIs](https://www.baeldung.com/java-nio2-file-attribute)
|
||||
- [Introduction to the Java NIO2 File API](https://www.baeldung.com/java-nio-2-file-api)
|
||||
- [Java NIO2 Path API](https://www.baeldung.com/java-nio-2-path)
|
||||
- [Guide to Java NIO2 Asynchronous Channel APIs](https://www.baeldung.com/java-nio-2-async-channels)
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
### Relevant Articles:
|
||||
- [Check if a Number Is Odd or Even](https://www.baeldung.com/java-check-number-parity)
|
||||
- [Check if a Number Is Odd or Even in Java](https://www.baeldung.com/java-check-number-parity)
|
||||
- [How to Check Whether an Integer Exists in a Range with Java](https://www.baeldung.com/java-interval-contains-integer)
|
||||
- [Check if a Number Is Positive or Negative in Java](https://www.baeldung.com/java-check-number-positive-negative)
|
||||
- [Armstrong Numbers in Java](https://www.baeldung.com/java-armstrong-numbers)
|
||||
|
|
|
@ -6,7 +6,7 @@ This module contains articles about string-related algorithms.
|
|||
- [How to Remove the Last Character of a String?](https://www.baeldung.com/java-remove-last-character-of-string)
|
||||
- [Add a Character to a String at a Given Position](https://www.baeldung.com/java-add-character-to-string)
|
||||
- [Java Check a String for Lowercase/Uppercase Letter, Special Character and Digit](https://www.baeldung.com/java-lowercase-uppercase-special-character-digit-regex)
|
||||
- [Remove or Replace Part of a String in Java](https://www.baeldung.com/java-remove-replace-string-part)
|
||||
- [Remove or Replace part of a String in Java](https://www.baeldung.com/java-remove-replace-string-part)
|
||||
- [Replace a Character at a Specific Index in a String in Java](https://www.baeldung.com/java-replace-character-at-index)
|
||||
- [Join Array of Primitives with Separator in Java](https://www.baeldung.com/java-join-primitive-array)
|
||||
- [Pad a String with Zeros or Spaces in Java](https://www.baeldung.com/java-pad-string)
|
||||
|
|
|
@ -9,7 +9,7 @@ This module contains articles about string-related algorithms.
|
|||
- [Removing Stopwords from a String in Java](https://www.baeldung.com/java-string-remove-stopwords)
|
||||
- [Removing Repeated Characters from a String](https://www.baeldung.com/java-remove-repeated-char)
|
||||
- [How to Reverse a String in Java](https://www.baeldung.com/java-reverse-string)
|
||||
- [Check If a String Is a Pangram in Java](https://www.baeldung.com/java-string-pangram)
|
||||
- [Check if a String is a Pangram in Java](https://www.baeldung.com/java-string-pangram)
|
||||
- [Check If a String Contains Multiple Keywords in Java](https://www.baeldung.com/string-contains-multiple-words)
|
||||
- [Checking If a String Is a Repeated Substring](https://www.baeldung.com/java-repeated-substring)
|
||||
- [Remove Emojis from a Java String](https://www.baeldung.com/java-string-remove-emojis)
|
||||
|
|
|
@ -11,6 +11,6 @@ This module contains articles about string conversions from/to another type.
|
|||
- [Image to Base64 String Conversion](https://www.baeldung.com/java-base64-image-string)
|
||||
- [Convert a Comma Separated String to a List in Java](https://www.baeldung.com/java-string-with-separator-to-list)
|
||||
- [Convert String to Double in Java](https://www.baeldung.com/java-string-to-double)
|
||||
- [Convert Char to String in Java](https://www.baeldung.com/java-convert-char-to-string)
|
||||
- [Convert char to String in Java](https://www.baeldung.com/java-convert-char-to-string)
|
||||
- [Convert String to int or Integer in Java](https://www.baeldung.com/java-convert-string-to-int-or-integer)
|
||||
- More articles: [[next -->]](/core-java-modules/core-java-string-conversions-2)
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
This module contains articles about strings in Java.
|
||||
|
||||
### Relevant Articles:
|
||||
- [Use char[] Array over a String for Manipulating Passwords in Java?](https://www.baeldung.com/java-storing-passwords)
|
||||
- [Use char[] Array Over a String for Manipulating Passwords in Java?](https://www.baeldung.com/java-storing-passwords)
|
||||
- [Compact Strings in Java 9](https://www.baeldung.com/java-9-compact-string)
|
||||
- [String Not Empty Test Assertions in Java](https://www.baeldung.com/java-assert-string-not-empty)
|
||||
- [String Performance Hints](https://www.baeldung.com/java-string-performance)
|
||||
|
|
|
@ -4,7 +4,7 @@ This module contains articles about Google Cloud
|
|||
|
||||
### Relevant Article:
|
||||
|
||||
- [Intro to Google Cloud Storage With Java](https://www.baeldung.com/java-google-cloud-storage)
|
||||
- [Intro to Google Cloud Storage with Java](https://www.baeldung.com/java-google-cloud-storage)
|
||||
|
||||
### Overview
|
||||
|
||||
|
|
|
@ -5,11 +5,11 @@ This module contains articles about Jackson conversions.
|
|||
### Relevant Articles:
|
||||
- [Jackson – Unmarshall to Collection/Array](https://www.baeldung.com/jackson-collection-array)
|
||||
- [Jackson Date](https://www.baeldung.com/jackson-serialize-dates)
|
||||
- [Jackson – Working with Maps and Nulls](https://www.baeldung.com/jackson-map-null-values-or-null-key)
|
||||
- [Jackson – Working with Maps and nulls](https://www.baeldung.com/jackson-map-null-values-or-null-key)
|
||||
- [Jackson – Decide What Fields Get Serialized/Deserialized](https://www.baeldung.com/jackson-field-serializable-deserializable-or-not)
|
||||
- [XML Serialization and Deserialization with Jackson](https://www.baeldung.com/jackson-xml-serialization-and-deserialization)
|
||||
- [Map Serialization and Deserialization with Jackson](https://www.baeldung.com/jackson-map)
|
||||
- [How to Serialize and Deserialize Enums with Jackson](https://www.baeldung.com/jackson-serialize-enums)
|
||||
- [How To Serialize and Deserialize Enums with Jackson](https://www.baeldung.com/jackson-serialize-enums)
|
||||
- [Jackson – Marshall String to JsonNode](https://www.baeldung.com/jackson-json-to-jsonnode)
|
||||
- [Mapping Nested Values with Jackson](https://www.baeldung.com/jackson-nested-values)
|
||||
- [Deserialize Immutable Objects with Jackson](https://www.baeldung.com/jackson-deserialize-immutable-objects)
|
||||
|
|
|
@ -4,7 +4,7 @@ This module contains articles about JavaFX.
|
|||
|
||||
### Relevant Articles:
|
||||
|
||||
- [Introduction to JavaFX](https://www.baeldung.com/javafx)
|
||||
- [Introduction to JavaFx](https://www.baeldung.com/javafx)
|
||||
- [Display Custom Items in JavaFX ListView](https://www.baeldung.com/javafx-listview-display-custom-items)
|
||||
- [Adding EventHandler to JavaFX Button](https://www.baeldung.com/javafx-button-eventhandler)
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@ This module contains articles about IO data processing libraries.
|
|||
- [Introduction To Kryo](https://www.baeldung.com/kryo)
|
||||
- [Parsing YAML with SnakeYAML](https://www.baeldung.com/java-snake-yaml)
|
||||
- [Introduction to Smooks](https://www.baeldung.com/smooks)
|
||||
- [Introduction To OpenCSV](https://www.baeldung.com/opencsv)
|
||||
- [Introduction to OpenCSV](https://www.baeldung.com/opencsv)
|
||||
- [Interact with Google Sheets from Java](https://www.baeldung.com/google-sheets-java-client)
|
||||
- [Introduction To Docx4J](https://www.baeldung.com/docx4j)
|
||||
- [Breaking YAML Strings Over Multiple Lines](https://www.baeldung.com/yaml-multi-line)
|
||||
|
|
|
@ -11,6 +11,6 @@ This module contains articles about test libraries.
|
|||
- [Introduction to Awaitility](https://www.baeldung.com/awaitility-testing)
|
||||
- [Introduction to Hoverfly in Java](https://www.baeldung.com/hoverfly)
|
||||
- [Testing with Hamcrest](https://www.baeldung.com/java-junit-hamcrest-guide)
|
||||
- [Introduction To DBUnit](https://www.baeldung.com/java-dbunit)
|
||||
- [Introduction to DBUnit](https://www.baeldung.com/java-dbunit)
|
||||
- [Introduction to ArchUnit](https://www.baeldung.com/java-archunit-intro)
|
||||
- [Guide to the ModelAssert Library for JSON](https://www.baeldung.com/json-modelassert)
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
### Relevant Articles:
|
||||
- [Guide to Linux jq Command for JSON processing](https://www.baeldung.com/linux/jq-command-json)
|
||||
- [Guide to Linux jq Command for JSON Processing](https://www.baeldung.com/linux/jq-command-json)
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
### Relevant Articles:
|
||||
- [Facade Design Pattern in Java](https://www.baeldung.com/java-facade-pattern)
|
||||
- [Proxy, Decorator, Adapter and Bridge Patterns](https://www.baeldung.com/java-structural-design-patterns)
|
||||
- [Composite Design Pattern in Java](https://www.baeldung.com/java-composite-pattern)
|
||||
- [Composite Design pattern in Java](https://www.baeldung.com/java-composite-pattern)
|
||||
- [The Decorator Pattern in Java](https://www.baeldung.com/java-decorator-pattern)
|
||||
- [The Adapter Pattern in Java](https://www.baeldung.com/java-adapter-pattern)
|
||||
- [The Proxy Pattern in Java](https://www.baeldung.com/java-proxy-pattern)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
### Relevant Articles:
|
||||
|
||||
- [A Solid Guide to Solid Principles](https://www.baeldung.com/solid-principles)
|
||||
- [A Solid Guide to SOLID Principles](https://www.baeldung.com/solid-principles)
|
||||
- [Single Responsibility Principle in Java](https://www.baeldung.com/java-single-responsibility-principle)
|
||||
- [Open/Closed Principle in Java](https://www.baeldung.com/java-open-closed-principle)
|
||||
- [Interface Segregation Principle in Java](https://www.baeldung.com/java-interface-segregation)
|
||||
|
|
|
@ -9,7 +9,7 @@ This module contains articles about Spring Data JPA used in enterprise applicati
|
|||
- [A Guide to Spring’s Open Session In View](https://www.baeldung.com/spring-open-session-in-view)
|
||||
- [Working with Lazy Element Collections in JPA](https://www.baeldung.com/java-jpa-lazy-collections)
|
||||
- [Custom Naming Convention with Spring Data JPA](https://www.baeldung.com/spring-data-jpa-custom-naming)
|
||||
- [Partial Data Update with Spring Data](https://www.baeldung.com/spring-data-partial-update)
|
||||
- [Partial Data Update With Spring Data](https://www.baeldung.com/spring-data-partial-update)
|
||||
- [Spring Data JPA @Modifying Annotation](https://www.baeldung.com/spring-data-jpa-modifying-annotation)
|
||||
|
||||
### Eclipse Config
|
||||
|
|
|
@ -9,7 +9,7 @@ This module contains articles about Spring Data REST
|
|||
- [Projections and Excerpts in Spring Data REST](https://www.baeldung.com/spring-data-rest-projections-excerpts)
|
||||
- [Spring Data REST Events with @RepositoryEventHandler](https://www.baeldung.com/spring-data-rest-events)
|
||||
- [Customizing HTTP Endpoints in Spring Data REST](https://www.baeldung.com/spring-data-rest-customize-http-endpoints)
|
||||
- [Spring Boot with SQLite](https://www.baeldung.com/spring-boot-sqlite)
|
||||
- [Spring Boot With SQLite](https://www.baeldung.com/spring-boot-sqlite)
|
||||
|
||||
### The Course
|
||||
The "REST With Spring" Classes: http://bit.ly/restwithspring
|
||||
|
|
|
@ -4,7 +4,7 @@ This module contains articles about Spring with jOOQ
|
|||
|
||||
### Relevant Articles:
|
||||
- [Spring Boot Support for jOOQ](https://www.baeldung.com/spring-boot-support-for-jooq)
|
||||
- [Introduction to jOOQ with Spring](https://www.baeldung.com/jooq-with-spring)
|
||||
- [Introduction to Jooq with Spring](https://www.baeldung.com/jooq-with-spring)
|
||||
- [Count Query In jOOQ](https://www.baeldung.com/jooq-count-query)
|
||||
|
||||
In order to fix the error "Plugin execution not covered by lifecycle configuration: org.jooq:jooq-codegen-maven:3.7.3:generate (execution: default, phase: generate-sources)", right-click on the error message and choose "Mark goal generated as ignore in pom.xml". Until version 1.4.x, the maven-plugin-plugin was covered by the default lifecycle mapping that ships with m2e.
|
||||
|
|
|
@ -9,5 +9,5 @@ This module contains articles about Spring 5
|
|||
- [Introduction to Spring REST Docs](https://www.baeldung.com/spring-rest-docs)
|
||||
- [Spring ResponseStatusException](https://www.baeldung.com/spring-response-status-exception)
|
||||
- [Spring Assert Statements](https://www.baeldung.com/spring-assert)
|
||||
- [Difference between \<context:annotation-config> vs \<context:component-scan>](https://www.baeldung.com/spring-contextannotation-contextcomponentscan)
|
||||
- [Difference between <context:annotation-config> vs <context:component-scan>](https://www.baeldung.com/spring-contextannotation-contextcomponentscan)
|
||||
- [Configuring a Hikari Connection Pool with Spring Boot](https://www.baeldung.com/spring-boot-hikari)
|
||||
|
|
|
@ -4,7 +4,7 @@ This module contains articles about Spring with the AMQP messaging system
|
|||
|
||||
## Relevant articles:
|
||||
|
||||
- [Messaging With Spring AMQP](https://www.baeldung.com/spring-amqp)
|
||||
- [Messaging with Spring AMQP](https://www.baeldung.com/spring-amqp)
|
||||
- [RabbitMQ Message Dispatching with Spring AMQP](https://www.baeldung.com/rabbitmq-spring-amqp)
|
||||
- [Error Handling with Spring AMQP](https://www.baeldung.com/spring-amqp-error-handling)
|
||||
- [Exponential Backoff With Spring AMQP](https://www.baeldung.com/spring-amqp-exponential-backoff)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
|
||||
### Relevant Articles:
|
||||
|
||||
- [Spring Boot 3 and Spring Framework 6.0 – What's New](https://www.baeldung.com/spring-boot-3-spring-6-new)
|
||||
- [Spring Boot 3 and Spring Framework 6.0 – What’s New](https://www.baeldung.com/spring-boot-3-spring-6-new)
|
||||
|
|
|
@ -4,7 +4,7 @@ This module contains articles about Properties in Spring Boot.
|
|||
|
||||
### Relevant Articles:
|
||||
- [A Quick Guide to Spring @Value](https://www.baeldung.com/spring-value-annotation)
|
||||
- [Using Spring @Value with Defaults](https://www.baeldung.com/spring-value-defaults)
|
||||
- [Using Spring @Value With Defaults](https://www.baeldung.com/spring-value-defaults)
|
||||
- [How to Inject a Property Value Into a Class Not Managed by Spring?](https://www.baeldung.com/inject-properties-value-non-spring-class)
|
||||
- [@PropertySource with YAML Files in Spring Boot](https://www.baeldung.com/spring-yaml-propertysource)
|
||||
- [Inject Arrays and Lists From Spring Properties Files](https://www.baeldung.com/spring-inject-arrays-lists)
|
||||
|
|
|
@ -4,7 +4,7 @@ This module contains articles about Spring Cloud Gateway
|
|||
|
||||
### Relevant Articles:
|
||||
|
||||
- [Exploring the new Spring Cloud Gateway](http://www.baeldung.com/spring-cloud-gateway)
|
||||
- [Exploring the New Spring Cloud Gateway](http://www.baeldung.com/spring-cloud-gateway)
|
||||
- [Writing Custom Spring Cloud Gateway Filters](https://www.baeldung.com/spring-cloud-custom-gateway-filters)
|
||||
- [Spring Cloud Gateway Routing Predicate Factories](https://www.baeldung.com/spring-cloud-gateway-routing-predicate-factories)
|
||||
- [Spring Cloud Gateway WebFilter Factories](https://www.baeldung.com/spring-cloud-gateway-webfilter-factories)
|
||||
|
|
|
@ -4,6 +4,6 @@ This module contains articles about Spring Cloud Kubernetes.
|
|||
|
||||
### Relevant Articles:
|
||||
|
||||
- [Running Spring Boot Applications with Minikube](https://www.baeldung.com/spring-boot-minikube)
|
||||
- [Running Spring Boot Applications With Minikube](https://www.baeldung.com/spring-boot-minikube)
|
||||
- [Self-Healing Applications with Kubernetes and Spring Boot](https://www.baeldung.com/spring-boot-kubernetes-self-healing-apps)
|
||||
- [Guide to Spring Cloud Kubernetes](https://www.baeldung.com/spring-cloud-kubernetes)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
|
||||
### Relevant Articles:
|
||||
- [Instantiating Multiple Beans of the Same Class with Spring Annotations](https://www.baeldung.com/spring-same-class-multiple-beans)
|
||||
- [Using Environment Variables in Spring Boot's application.properties](https://www.baeldung.com/spring-boot-properties-env-variables)
|
||||
- [Using Environment Variables in Spring Boot’s application.properties](https://www.baeldung.com/spring-boot-properties-env-variables)
|
||||
|
|
|
@ -9,7 +9,7 @@ The "REST With Spring" Classes: https://bit.ly/restwithspring
|
|||
|
||||
- [Exploring the Spring 5 WebFlux URL Matching](https://www.baeldung.com/spring-5-mvc-url-matching)
|
||||
- [Reactive WebSockets with Spring 5](https://www.baeldung.com/spring-5-reactive-websockets)
|
||||
- [Spring Webflux Filters](https://www.baeldung.com/spring-webflux-filters)
|
||||
- [Spring WebFlux Filters](https://www.baeldung.com/spring-webflux-filters)
|
||||
- [How to Set a Header on a Response with Spring 5](https://www.baeldung.com/spring-response-header)
|
||||
- [A Guide to Spring Session Reactive Support: WebSession](https://www.baeldung.com/spring-session-reactive)
|
||||
- More articles: [[next -->]](../spring-5-reactive-2)
|
||||
|
|
|
@ -9,7 +9,7 @@ The "REST With Spring" Classes: http://github.learnspringsecurity.com
|
|||
### Relevant Articles:
|
||||
|
||||
- [Spring Security Remember Me](https://www.baeldung.com/spring-security-remember-me)
|
||||
- [Redirect to different pages after Login with Spring Security](https://www.baeldung.com/spring_redirect_after_login)
|
||||
- [Redirect to Different Pages after Login with Spring Security](https://www.baeldung.com/spring_redirect_after_login)
|
||||
- [Changing Spring Model Parameters with Handler Interceptor](https://www.baeldung.com/spring-model-parameters-with-handler-interceptor)
|
||||
- [Introduction to Spring MVC HandlerInterceptor](https://www.baeldung.com/spring-mvc-handlerinterceptor)
|
||||
- [Using a Custom Spring MVC’s Handler Interceptor to Manage Sessions](https://www.baeldung.com/spring-mvc-custom-handler-interceptor)
|
||||
|
|
|
@ -5,4 +5,4 @@ This module contains articles about Spring Security with Thymeleaf.
|
|||
### Relevant Articles:
|
||||
|
||||
- [Spring Security with Thymeleaf](https://www.baeldung.com/spring-security-thymeleaf)
|
||||
- [Display Logged-in User's Information in Thymeleaf](https://www.baeldung.com/spring-thymeleaf-user-info)
|
||||
- [Display Logged-in User’s Information in Thymeleaf](https://www.baeldung.com/spring-thymeleaf-user-info)
|
||||
|
|
|
@ -7,7 +7,7 @@ The "REST With Spring" Classes: https://bit.ly/restwithspring
|
|||
- [Quick Guide to Spring Controllers](https://www.baeldung.com/spring-controllers)
|
||||
- [Model, ModelMap, and ModelAndView in Spring MVC](https://www.baeldung.com/spring-mvc-model-model-map-model-view)
|
||||
- [Spring Web Contexts](https://www.baeldung.com/spring-web-contexts)
|
||||
- [Spring Optional Path variables](https://www.baeldung.com/spring-optional-path-variables)
|
||||
- [Spring Optional Path Variables](https://www.baeldung.com/spring-optional-path-variables)
|
||||
- [JSON Parameters with Spring MVC](https://www.baeldung.com/spring-mvc-send-json-parameters)
|
||||
- [How to Set JSON Content Type In Spring MVC](https://www.baeldung.com/spring-mvc-set-json-content-type)
|
||||
- [Validating Lists in a Spring Controller](https://www.baeldung.com/spring-validate-list-controller)
|
||||
|
|
|
@ -12,7 +12,7 @@ The "Learn Spring Security" Classes: http://github.learnspringsecurity.com
|
|||
|
||||
- [REST Query Language with Spring and JPA Criteria](https://www.baeldung.com/rest-search-language-spring-jpa-criteria)
|
||||
- [REST Query Language with Spring Data JPA Specifications](https://www.baeldung.com/rest-api-search-language-spring-data-specifications)
|
||||
- [REST Query Language with Spring Data JPA and QueryDSL](https://www.baeldung.com/rest-api-search-language-spring-data-querydsl)
|
||||
- [REST Query Language with Spring Data JPA and Querydsl](https://www.baeldung.com/rest-api-search-language-spring-data-querydsl)
|
||||
- [REST Query Language – Advanced Search Operations](https://www.baeldung.com/rest-api-query-search-language-more-operations)
|
||||
- [REST Query Language with RSQL](https://www.baeldung.com/rest-api-search-language-rsql-fiql)
|
||||
- [REST Query Language – Implementing OR Operation](https://www.baeldung.com/rest-api-query-search-or-operation)
|
||||
|
|
|
@ -8,7 +8,7 @@ This module contains articles about Spring with Thymeleaf
|
|||
- [Spring Request Parameters with Thymeleaf](https://www.baeldung.com/spring-thymeleaf-request-parameters)
|
||||
- [Thymeleaf lists Utility Object](https://www.baeldung.com/thymeleaf-lists-utility)
|
||||
- [Spring Path Variables with Thymeleaf](https://www.baeldung.com/spring-thymeleaf-path-variables)
|
||||
- [Working with Arrays in Thymeleaf](https://www.baeldung.com/thymeleaf-arrays)
|
||||
- [Working With Arrays in Thymeleaf](https://www.baeldung.com/thymeleaf-arrays)
|
||||
- [Working with Boolean in Thymeleaf](https://www.baeldung.com/thymeleaf-boolean)
|
||||
- [Working With Custom HTML Attributes in Thymeleaf](https://www.baeldung.com/thymeleaf-custom-html-attributes)
|
||||
- [[<-- prev]](/spring-thymeleaf)
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
- [The Order of Tests in JUnit](https://www.baeldung.com/junit-5-test-order)
|
||||
- [Running JUnit Tests Programmatically, from a Java Application](https://www.baeldung.com/junit-tests-run-programmatically-from-java)
|
||||
- [Testing an Abstract Class With JUnit](https://www.baeldung.com/junit-test-abstract-class)
|
||||
- [Guide to Dynamic Tests in JUnit 5](https://www.baeldung.com/junit5-dynamic-tests)
|
||||
- [Guide to Dynamic Tests in Junit 5](https://www.baeldung.com/junit5-dynamic-tests)
|
||||
- [Determine the Execution Time of JUnit Tests](https://www.baeldung.com/junit-test-execution-time)
|
||||
- [@BeforeAll and @AfterAll in Non-Static Methods](https://www.baeldung.com/java-beforeall-afterall-non-static)
|
||||
- [The java.lang.NoClassDefFoundError in JUnit](https://www.baeldung.com/junit-noclassdeffounderror)
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
This module contains articles about JUnit 5 Annotations
|
||||
|
||||
### Relevant Articles:
|
||||
- [A Guide to @RepeatedTest in JUnit 5](https://www.baeldung.com/junit-5-repeated-test)
|
||||
- [A Guide to @RepeatedTest in Junit 5](https://www.baeldung.com/junit-5-repeated-test)
|
||||
- [JUnit 5 Conditional Test Execution with Annotations](https://www.baeldung.com/junit-5-conditional-test-execution)
|
||||
- [JUnit5 Programmatic Extension Registration with @RegisterExtension](https://www.baeldung.com/junit-5-registerextension-annotation)
|
||||
- [Guide to JUnit 5 Parameterized Tests](https://www.baeldung.com/parameterized-tests-junit-5)
|
||||
|
|
|
@ -12,4 +12,4 @@ This module contains articles about Servlets.
|
|||
- [Jakarta EE Servlet Exception Handling](https://www.baeldung.com/servlet-exceptions)
|
||||
- [Context and Servlet Initialization Parameters](https://www.baeldung.com/context-servlet-initialization-param)
|
||||
- [The Difference between getRequestURI and getPathInfo in HttpServletRequest](https://www.baeldung.com/http-servlet-request-requesturi-pathinfo)
|
||||
- [Difference between request.getSession() and request.getSession(true)](https://www.baeldung.com/java-request-getsession)
|
||||
- [Difference Between request.getSession() and request.getSession(true)](https://www.baeldung.com/java-request-getsession)
|
||||
|
|
Loading…
Reference in New Issue