[JAVA] Memorandum Poem (updated from time to time)

2017/11/28

Recommended articles

Successful story using different ORMs for DDD x CQRS update system and reference system

2017/11/27

About Speedment internally calling JDBC Driver directly with Class # forName (String).

[PostgresqlDbmsType # getDriverName ()](https://github.com/speedment/speedment/blob/master/runtime-parent/runtime-core/src/main/java/com/speedment/runtime/core/internal/db /postgresql/PostgresqlDbmsType.java) [Called by AbstractDbmsType # isSupported ()](https://github.com/speedment/speedment/blob/master/runtime-parent/runtime-core/src/main/java/com/speedment/runtime/core/ internal / db / AbstractDbmsType.java) Well, it doesn't return the result, so it's just like starting the registration process of DriverManager # registeredDrivers.

2017/08/01

Recommended articles

Awesome Java: Great Java Framework Library Software

2017/07/31 javax.crypto.Cipher Cipher (Java Platform SE8) It is a framework core for transparently performing encryption and compound processing. Basically, get the encryption / composite result with Cipher # doFinal (byte []). Cipher # doFinal (byte [], int, int, byte [], int) outputs the encryption / composite result of argument 1 to argument 5 or later of argument 4. At this time, since the API allows argument 1 and argument 4 to be the same reference, it is useful for saving memory space. Also, when handling continuous data, it is necessary to use Cipher # update (byte []) etc. in the same way, but it is necessary to call Cipher # doFinal () etc. at the final stage.

javax.crypto.CipherInputStream / javax.crypto.CipherOutputStream CipherInputStream (Java Platform SE8) CipherOutputStream (Java Platform SE8) I / O Stream class using the above Cipher, this is easy when stream processing is required or the data size is large. If you want to process data that exceeds the file system limit, you need to think about it anyway.

Recommended Posts

Memorandum Poem (updated from time to time)
[Reverse lookup] Spring Security (updated from time to time)
SpringBoot useful site collection (updated from time to time)
[Updated from time to time] Links that are indebted
Touch all Spring "Guides" (updated from time to time)
Introduction to programming for college students (updated from time to time)
[Updated from time to time] Ruby on Rails Convenient methods
[Eclipse] Summary of environment settings * Updated from time to time
[Personal memo] Frequently used Java grammar updated from time to time
How to convert param to hash with Rails controller (updated from time to time)
Convert from java UTC time to JST time
I translated the grammar of R and Java [Updated from time to time]
Points I stumbled upon when creating an Android application [Updated from time to time]
Git commands that new engineers should look back on [updated from time to time]
Changes from Java 8 to Java 11
Sum from Java_1 to 100
Migrate from JUnit 4 to JUnit 5
From Java to Ruby !!
My 1880's ~ Fixed time zone from LMT to JST ~
A memorandum when I investigated how to convert from Epoch Time to Date type in Scala
Moved from iBATIS to MyBatis3
Migration from Cobol to JAVA
Switch from slim3-gen to slim3-gen-jsr269
Moving from AWS to PaizaCloud
New features from Java7 to Java8
Migrating from vargrant to docker
Connect from Java to PostgreSQL
Convert from ○ months to ○ years ○ months
Rewriting from applet to application
Change from SQLite3 to PostgreSQL
From Ineffective Java to Effective Java
How to migrate from JUnit4 to JUnit5