# migration
5 posts
Migrating a Spring Boot Service from Java to Kotlin — A Practical Guide
A step-by-step guide to migrating a Spring Boot application from Java to Kotlin — migration order, build setup, interop gotchas, JPA concerns, and testing with MockK.
Migrating from XML Views to Compose — Gradual Adoption Strategy
Migrate from XML Views to Jetpack Compose incrementally — ComposeView in Fragments, AndroidView for legacy widgets, navigation interop, and a practical migration roadmap.
Migrating from Java 17 to 21 — What Breaks, What Improves
A practical migration guide from Java 17 to 21 — breaking changes, deprecated removals, new features to adopt, and step-by-step upgrade process.
Kotlin 2.x — What Changed and How to Migrate
Everything you need to know about migrating to Kotlin 2.x — the K2 compiler, breaking changes, new features, Compose compiler integration, and step-by-step migration guide.
Migrate to Android Room with Date Column
Migrating our apps to Android Room from conventional SQLite Database was flawless except when we encountered issue with Date column...