File name with file names

I just noticed that almost all of the key values ​​in the property files are in dot-separated names. e.g. -some.key = some value Does anyone know why? Just asked out of curiosity.

+5
source share
2 answers

There is no specific reason for this, but it's just for a better understanding of programmers nothing more. you can also directly write the key = value without using any "some" :-)

+4
source

This is basically an agreement that makes it easier to see which properties are related.

For instance:

person.title = "Title" person.surname = "Last Name" job.description = "Some Description"

, , , , . IDE , , , .

, , . .

+8

All Articles