Developer Case Tool
dot.case Converter
Convert text to dot.case notation for configs and namespaces.
Features
Hierarchical Namespacing
Dots naturally express parent-child relationships like 'spring.datasource.url'.
All Lowercase
dot.case output is always lowercase, matching config file conventions.
Any Input Format
Converts from camelCase, PascalCase, underscores, hyphens, and plain text.
How to Use
- 1
Enter your property or namespace
Type a configuration key, namespace, or descriptive phrase.
- 2
View dot.case output
Words are split and joined with dots in lowercase.
- 3
Use in your config file
Paste directly into application.properties, YAML, or logger config.
Examples
Spring Boot config
Input
spring datasource urlOutput
spring.datasource.urlLogger name
Input
com app service UserServiceOutput
com.app.service.userserviceFrom camelCase
Input
app.config.maxRetriesOutput
app.config.maxretriesCommon Questions
dot.case appears in Spring Boot configuration (application.properties), Java package names, Log4j/Logback logger names, DNS domain labels, and hierarchical configuration systems.