Commit Graph

5189 Commits

Author SHA1 Message Date
Philippe Soares 6866b51d52 Put html and js resources back to their original location.
Split backend code so it doesn't modify existing examples.
Added a bots.html page for the server push version.
2020-11-08 11:38:17 -05:00
Philippe Soares 7f1ed45993 Merge branch 'master' of https://github.com/eugenp/tutorials
 Conflicts:
	spring-websockets/src/main/resources/public/index.html
2020-11-08 11:15:35 -05:00
MeenaGawande 42276ed18a [BAEL-4556] How to Check if a Java Program Is Running in 64-Bit JVM or 32-Bit JVM (#10139)
* How to Check if a Java Program Is Running in 64-Bit JVM or 32-Bit JVM

How to Check if a Java Program Is Running in 64-Bit JVM or 32-Bit JVM

* baeldung-articlesBAEL-4556 How can I tell if I'm running in 64-bit JVM or 32-bit JVM

Changes as per review comments .
1.Package Name change
2.Variable change from static to instance
3.Test Method name change

* Update JVMBitVersionUnitTest.java

[BAEL-4556] How to Check if a Java Program Is Running in 64-Bit JVM or 32-Bit JVM

* [BAEL-4556]Added code and Junits for JVMBitVersion

* [BAEL-4556]Removed code and Junits for os.arch property to check JVMBitVersion

Co-authored-by: MeenaGawande <MeenaGawande@users.noreply.github.com>
2020-11-07 09:18:40 -06:00
Graham Cox fa2387c836 Updates to Delegated Properties article for Kotlin 1.4 (#10220) 2020-11-07 09:16:21 -06:00
Loredana Crusoveanu f579e493d3 Merge pull request #10239 from eugenp/exclude-test
JAVA-3498 rename test to exclude it from build temporarily
2020-11-07 12:00:44 +02:00
Loredana b4ae0bfb63 JAVA-3498 rename test to exclude it from build temporarily 2020-11-07 11:57:38 +02:00
Loredana Crusoveanu 2c7ff20eb4 Merge pull request #10237 from kwoyke/JAVA-3384-2
JAVA-3384: Add missing commons-collections4 dependency
2020-11-06 17:44:19 +02:00
Loredana Crusoveanu 65d2996c10 Merge pull request #10235 from johnA1331/master
BAEL-29324 - add links to github-baeldung articles
2020-11-06 12:41:55 +02:00
GilvanOrnelas bd6e3a5328 Fixing db indexing integration tests (#10229)
Co-authored-by: Gilvan Ornelas Fernandes Filho <gilvan.fernandes@bairesdev.com>
2020-11-06 09:04:33 +00:00
Loredana Crusoveanu 54b5f68302 Merge pull request #10236 from kwoyke/JAVA-3384
JAVA-3384: Fix integration tests in the spring-boot-properties
2020-11-06 10:33:01 +02:00
Krzysztof Woyke c5236f0acb JAVA-3384: Add missing commons-collections4 dependency 2020-11-06 09:08:16 +01:00
Jonathan Cook 596189a553 Merge pull request #10166 from Saber-k/master
BAEL-4212 (String) or .toString()?
2020-11-05 15:35:33 +01:00
Krzysztof Woyke 0a4fc2ef66 JAVA-3384: Fix integration tests in the spring-boot-properties 2020-11-05 08:58:04 +01:00
johnA1331 8cdfd5051d Update README.md 2020-11-05 14:17:57 +08:00
johnA1331 ff17ea49cf Update README.md 2020-11-05 14:12:52 +08:00
johnA1331 95cc0130a7 Update README.md 2020-11-05 14:10:38 +08:00
johnA1331 d927293989 Update README.md 2020-11-05 14:09:02 +08:00
johnA1331 a3e67d1f87 Update README.md 2020-11-05 14:07:07 +08:00
johnA1331 dc34794a5f Update README.md 2020-11-05 13:58:00 +08:00
johnA1331 99689edd88 Update README.md 2020-11-05 13:55:30 +08:00
Eric Martin a0248b8bb2 Merge pull request #10233 from tarunjain01/master
BAEL-4645|Transient keyword in Java
2020-11-04 22:56:55 -06:00
Tarun Jain 1fba6f0127 BAEL-4645|Transient keyword in Java 2020-11-04 14:09:33 +05:30
Daniel Strmecki 5116a45d1e Feature/bael 4662 sealed classes (#10224)
* BAEL-4662: Initial commit of new module

* BAEL-4662: Example with Records

* BAEL-4662: Example with Interface

* BAEL-4662: Add test classes

* BAEL-4662: Update examples and tests

* BAEL-4662: Rename test classes
2020-11-03 11:37:30 -08:00
Harihar Das f40ed2cef5 Channels examples (#10225)
Co-authored-by: Harihar Das <harihar.das@revolut.com>
2020-11-03 19:13:36 +01:00
kwoyke a0828bf3d1 BAEL-3704: Add missing code samples (#10226) 2020-11-03 19:07:21 +01:00
kwoyke 8c26df1709 BAEL-4682: Add boolean example to the YAML (#10227) 2020-11-03 09:33:24 +01:00
Eric Martin 1578788805 Merge pull request #10192 from sk1418/abstractMethodError
[BAEL-4284] AbstractMethodError
2020-11-02 21:24:43 -06:00
Jonathan Cook 678abbc8c5 Merge pull request #10170 from abdallahsawan/BAEL-4161
The Value of 0xFF Number and Its Uses With &amp; Operation in Java Ar…
2020-11-02 19:33:34 +01:00
Loredana Crusoveanu 029b6cf84f Merge pull request #10125 from ThibDujardin/master
Add Vavr Tuple example
2020-11-02 17:21:02 +02:00
AbdallahSawan 44ff0f03f6 The Value of 0xFF Number and Its Uses With &amp; Operation in Java Article by Abdallah Sawan 2020-11-02 10:31:44 +02:00
GilvanOrnelas d4a8a33604 Storing files indexed by a database (#10174)
Creating the FileLocationService to link the FileSystemRepository to the ImageDbRepository. Removing test order

Changing to BDDMockito

Changing Long wrapper for @id. Changing the test names to given-when-then pattern

Co-authored-by: Gilvan Ornelas Fernandes Filho <gilvan.fernandes@bairesdev.com>
2020-11-01 14:46:15 +00:00
Loredana Crusoveanu 1346d5f0c5 Merge pull request #10221 from eugenp/lor6-patch-1
Update README.md
2020-11-01 11:36:04 +02:00
Greg 51886013ac Merge pull request #10144 from SimoneCusimano/BAEL-4183-dependency-management-in-gradle
[BAEL-4183] Dependency Management in Gradle
2020-10-31 12:35:33 -04:00
Loredana Crusoveanu c71fb2ce9e Update README.md 2020-10-31 12:07:35 +02:00
Sampada 964cde9dbc BAEL-3894: Added Performance Tests (#10213) 2020-10-30 10:37:24 -07:00
Loredana Crusoveanu bfcbaf886a Merge pull request #10217 from eugenp/update-httpclient
add additional property for httpclient v.4.5
2020-10-30 12:39:54 +02:00
mateusz.szablak 46c257f00f review #2 2020-10-29 16:44:28 +01:00
Loredana Crusoveanu 74079b9134 Merge pull request #10214 from johnA1331/master
BAEL-28915 - github-related test fix (results: 18.10.2020)
2020-10-29 15:23:58 +02:00
Loredana 985d8df088 add additional property for httpclient v.4.5 2020-10-29 15:16:29 +02:00
Kumar Chandrakant 0794a1ad1b Adding source code for article tracked under BAEL-4576 (#10203)
Co-authored-by: CHANDRAKANT Kumar <kumar.chandrakant@soprabanking.com>
2020-10-29 06:11:46 +01:00
Loredana Crusoveanu 170ab9123d Merge pull request #10212 from eugenp/lor6-patch-1
Update README.md
2020-10-28 14:13:02 +02:00
johnA1331 ed3fe0cfce Update README.md 2020-10-28 17:21:03 +08:00
johnA1331 e5681dee1b Update README.md 2020-10-28 17:18:55 +08:00
johnA1331 8a97af121f Update README.md 2020-10-28 17:16:48 +08:00
johnA1331 0c225ec742 Update README.md 2020-10-28 17:15:12 +08:00
johnA1331 a96868a314 Update README.md 2020-10-28 17:07:37 +08:00
johnA1331 8f28017782 Update README.md 2020-10-28 17:05:43 +08:00
johnA1331 0a0da38910 Update README.md 2020-10-28 17:03:10 +08:00
johnA1331 3f049c51b5 Update README.md 2020-10-28 17:01:07 +08:00
johnA1331 6e4cff9261 Update README.md 2020-10-28 16:59:15 +08:00