Skip to main content

· 3 min read

Continuing series of blog posts related to Kotlin, today we’ll together make a sample application showing us how we could automate email sending – using Kotlin programming language. Example is quite simple, and surely – you can enhance it with own features. Application mostly demonstrates compact Kotlin syntax, as well as full compatibility with Java or 3rd party libraries (in this case Apache commons-mail library).

· 25 min read

Let's get started explaining some day-to-day jargon used in the software development community, which should make your beginners days as easy as possible.

Pretty much all the topics listed below are significantly simplified for the sake of easier understanding. The idea is that you, as a reader, will be able to find more information about each topic online.

· 5 min read

Let's build some simple example that demonstrate ease of Spring Boot use when building applications that need to connect to, in this case - MySql database. Final output will be single - standalone jar file that can be executed as java -jar my-boot-artifact.jar and will be able to process http requests. Application is intentionally made simple, there's no big architecture inside it - you can see database code inside Controller method, which you'd normally not use for real world projects.