Skip to content

Commit 4cbc8d0

Browse files
charlesgonzalespivovarit
authored andcommitted
To add/fix links (Team Jira BAEL-9015) (eugenp#5332)
* Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.MD * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Create README.md * Create README.md * Update README.md * Update README.MD * Update README.md * Update README.md * Update README.md * Update README.md
1 parent 1e60c8f commit 4cbc8d0

File tree

21 files changed

+38
-5
lines changed

21 files changed

+38
-5
lines changed

algorithms/README.md

+4
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,7 @@
2424
- [Practical Java Examples of the Big O Notation](http://www.baeldung.com/java-algorithm-complexity)
2525
- [Find the Middle Element of a Linked List](http://www.baeldung.com/java-linked-list-middle-element)
2626
- [An Introduction to the Theory of Big-O Notation](http://www.baeldung.com/big-o-notation)
27+
- [Check If Two Rectangles Overlap In Java](https://www.baeldung.com/java-check-if-two-rectangles-overlap)
28+
- [Calculate the Distance Between Two Points in Java](https://www.baeldung.com/java-distance-between-two-points)
29+
- [Find the Intersection of Two Lines in Java](https://www.baeldung.com/java-intersection-of-two-lines)
30+
- [Check If a String Contains All The Letters of The Alphabet](https://www.baeldung.com/java-string-contains-all-letters)

core-java-collections/README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,6 @@
4848
- [Thread Safe LIFO Data Structure Implementations](https://www.baeldung.com/java-lifo-thread-safe)
4949
- [Collections.emptyList() vs. New List Instance](https://www.baeldung.com/java-collections-emptylist-new-list)
5050
- [Initialize a HashMap in Java](https://www.baeldung.com/java-initialize-hashmap)
51-
- [](https://www.baeldung.com/java-hashset-arraylist-contains-performance)
51+
- [Performance of contains() in a HashSet vs ArrayList](https://www.baeldung.com/java-hashset-arraylist-contains-performance)
52+
- [Get the Key for a Value from a Java Map](https://www.baeldung.com/java-map-key-from-value)
53+
- [Time Complexity of Java Collections](https://www.baeldung.com/java-collections-complexity)

core-java-io/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,4 @@
3131
- [Create a Symbolic Link with Java](http://www.baeldung.com/java-symlink)
3232
- [Quick Use of FilenameFilter](http://www.baeldung.com/java-filename-filter)
3333
- [Initialize a HashMap in Java](https://www.baeldung.com/java-initialize-hashmap)
34+
- [ Read a File into an ArrayList](https://www.baeldung.com/java-file-to-arraylist)

core-java/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -151,3 +151,4 @@
151151
- [ClassCastException: Arrays$ArrayList cannot be cast to ArrayList](https://www.baeldung.com/java-classcastexception-arrays-arraylist)
152152
- [Throw Exception in Optional in Java 8](https://www.baeldung.com/java-optional-throw-exception)
153153
- [Add a Character to a String at a Given Position](https://www.baeldung.com/java-add-character-to-string)
154+
- [Synthetic Constructs in Java](https://www.baeldung.com/java-synthetic)

core-kotlin/README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,7 @@
3333
- [Idiomatic Logging in Kotlin](http://www.baeldung.com/kotlin-logging)
3434
- [Kotlin Constructors](https://www.baeldung.com/kotlin-constructors)
3535
- [Creational Design Patterns in Kotlin: Builder](https://www.baeldung.com/kotlin-builder-pattern)
36-
- [Kotlin Nested and Inner Classes](https://www.baeldung.com/kotlin-inner-classes)
36+
- [Kotlin Nested and Inner Classes](https://www.baeldung.com/kotlin-inner-classes)
37+
- [Kotlin with Ktor](https://www.baeldung.com/kotlin-ktor)
38+
- [Fuel HTTP Library with Kotlin](https://www.baeldung.com/kotlin-fuel)
39+
- [Introduction to Kovenant Library for Kotlin](https://www.baeldung.com/kotlin-kovenant)

hibernate5/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@
1414
- [Bootstrapping JPA Programmatically in Java](http://www.baeldung.com/java-bootstrap-jpa)
1515
- [Optimistic Locking in JPA](http://www.baeldung.com/jpa-optimistic-locking)
1616
- [Hibernate Entity Lifecycle](https://www.baeldung.com/hibernate-entity-lifecycle)
17+
- [@JoinColumn Annotation Explained](https://www.baeldung.com/jpa-join-column)

java-strings/README.md

+3
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,6 @@
2727
- [Compact Strings in Java 9](http://www.baeldung.com/java-9-compact-string)
2828
- [Java Check a String for Lowercase/Uppercase Letter, Special Character and Digit](https://www.baeldung.com/java-lowercase-uppercase-special-character-digit-regex)
2929
- [Convert java.util.Date to String](https://www.baeldung.com/java-util-date-to-string)
30+
- [Converting a Stack Trace to a String in Java](https://www.baeldung.com/java-stacktrace-to-string)
31+
- [Sorting a String Alphabetically in Java](https://www.baeldung.com/java-sort-string-alphabetically)
32+
- [Remove Emojis from a Java String](https://www.baeldung.com/java-string-remove-emojis)

jersey/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
- [Jersey Filters and Interceptors](http://www.baeldung.com/jersey-filters-interceptors)
22
- [Jersey MVC Support](https://www.baeldung.com/jersey-mvc)
3+
- [Set a Response Body in JAX-RS](https://www.baeldung.com/jax-rs-response)

jta/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
### Relevant Articles:
2+
- [Guide to Java EE JTA](https://www.baeldung.com/jee-jta)

lombok/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
## Relevant Articles:
22
- [Introduction to Project Lombok](http://www.baeldung.com/intro-to-project-lombok)
33
- [Using Lombok’s @Builder Annotation](http://www.baeldung.com/lombok-builder)
4+
- [Using Lombok’s @Getter for Boolean Fields](https://www.baeldung.com/lombok-getter-boolean)
5+
- [Lombok @Builder with Inheritance](https://www.baeldung.com/lombok-builder-inheritance)

optaplanner/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
### Relevant articles
22

3-
- [Guide to OptaPlanner](https://www.baeldung.com/opta-planner)
3+
- [A Guide to OptaPlanner](https://www.baeldung.com/opta-planner)

ratpack/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
- [Ratpack Google Guice Integration](http://www.baeldung.com/ratpack-google-guice)
55
- [Ratpack Integration with Spring Boot](http://www.baeldung.com/ratpack-spring-boot)
66
- [Ratpack with Hystrix](http://www.baeldung.com/ratpack-hystrix)
7-
7+
- [Ratpack HTTP Client](https://www.baeldung.com/ratpack-http-client)

spring-5-reactive/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,4 @@ The "REST With Spring" Classes: http://bit.ly/restwithspring
1313
- [How to Set a Header on a Response with Spring 5](http://www.baeldung.com/spring-response-header)
1414
- [Spring Webflux and CORS](http://www.baeldung.com/spring-webflux-cors)
1515
- [Handling Errors in Spring WebFlux](http://www.baeldung.com/spring-webflux-errors)
16+
- [Server-Sent Events in Spring](https://www.baeldung.com/spring-server-sent-events)

spring-boot-bootstrap/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
- [Bootstrap a Simple Application using Spring Boot](http://www.baeldung.com/spring-boot-start)
33
- [Spring Boot Dependency Management with a Custom Parent](http://www.baeldung.com/spring-boot-dependency-management-custom-parent)
44
- [Thin JARs with Spring Boot](http://www.baeldung.com/spring-boot-thin-jar)
5+
- [Deploying a Spring Boot Application to Cloud Foundry](https://www.baeldung.com/spring-boot-app-deploy-to-cloud-foundry)

spring-boot-security/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,5 @@
99

1010
### Relevant Articles:
1111
- [Spring Boot Security Auto-Configuration](http://www.baeldung.com/spring-boot-security-autoconfiguration)
12+
- [Spring Security for Spring Boot Integration Tests](https://www.baeldung.com/spring-security-integration-tests)
13+
- [Introduction to Spring Security Taglibs](https://www.baeldung.com/spring-security-taglibs)

spring-boot/README.MD

+1
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,4 @@ The "REST With Spring" Classes: http://bit.ly/restwithspring
3333
- [Container Configuration in Spring Boot 2](http://www.baeldung.com/embeddedservletcontainercustomizer-configurableembeddedservletcontainer-spring-boot)
3434
- [Introduction to Chaos Monkey](https://www.baeldung.com/spring-boot-chaos-monkey)
3535
- [Spring Component Scanning](https://www.baeldung.com/spring-component-scanning)
36+
- [Load Spring Boot Properties From a JSON File](https://www.baeldung.com/spring-boot-json-properties)

spring-data-jpa/README.md

+3
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111
- [Spring Data Java 8 Support](http://www.baeldung.com/spring-data-java-8)
1212
- [A Simple Tagging Implementation with JPA](http://www.baeldung.com/jpa-tagging)
1313
- [Spring Data Composable Repositories](https://www.baeldung.com/spring-data-composable-repositories)
14+
- [Auditing with JPA, Hibernate, and Spring Data JPA](https://www.baeldung.com/database-auditing-jpa)
15+
- [Query Entities by Dates and Times with Spring Data JPA](https://www.baeldung.com/spring-data-jpa-query-by-date)
16+
- [DDD Aggregates and @DomainEvents](https://www.baeldung.com/spring-data-ddd)
1417

1518
### Eclipse Config
1619
After importing the project into Eclipse, you may see the following error:

spring-mvc-java/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,5 @@ The "REST With Spring" Classes: http://bit.ly/restwithspring
3030
- [A Quick Example of Spring Websockets’ @SendToUser Annotation](http://www.baeldung.com/spring-websockets-sendtouser)
3131
- [Using Spring ResponseEntity to Manipulate the HTTP Response](http://www.baeldung.com/spring-response-entity)
3232
- [Using Spring @ResponseStatus to Set HTTP Status Code](http://www.baeldung.com/spring-response-status)
33+
- [Bootstrap a Web Application with Spring 5](https://www.baeldung.com/bootstraping-a-web-application-with-spring-and-java-based-configuration)
34+
- [Spring MVC Tutorial](https://www.baeldung.com/spring-mvc-tutorial)

spring-security-mvc-boot/README.MD

+1
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ The "REST With Spring" Classes: http://github.learnspringsecurity.com
1010
- [Multiple Authentication Providers in Spring Security](http://www.baeldung.com/spring-security-multiple-auth-providers)
1111
- [Granted Authority Versus Role in Spring Security](http://www.baeldung.com/spring-security-granted-authority-vs-role)
1212
- [Spring Data with Spring Security](https://www.baeldung.com/spring-data-security)
13+
- [Spring Security – Whitelist IP Range](https://www.baeldung.com/spring-security-whitelist-ip-range)

spring-security-mvc-socket/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ To login, use credentials from the data.sql file in src/main/resource, eg: user/
77

88
### Relevant Articles:
99
- [Intro to Security and WebSockets](http://www.baeldung.com/spring-security-websockets)
10-
- [Spring WebSockets: Specific User Chat](https://www.baeldung.com/spring-websockets-send-message-to-user)
10+
- [Spring WebSockets: Build an User Chat](https://www.baeldung.com/spring-websockets-send-message-to-user)

spring-vault/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
### Relevant Articles:
2+
- [Spring Vault](https://www.baeldung.com/spring-vault)

0 commit comments

Comments
 (0)