OS Garage

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. 1

    Enter your property or namespace

    Type a configuration key, namespace, or descriptive phrase.

  2. 2

    View dot.case output

    Words are split and joined with dots in lowercase.

  3. 3

    Use in your config file

    Paste directly into application.properties, YAML, or logger config.

Examples

Spring Boot config

Input

spring datasource url

Output

spring.datasource.url

Logger name

Input

com app service UserService

Output

com.app.service.userservice

From camelCase

Input

app.config.maxRetries

Output

app.config.maxretries

Common Questions

dot.case appears in Spring Boot configuration (application.properties), Java package names, Log4j/Logback logger names, DNS domain labels, and hierarchical configuration systems.