How do I provide basic configuration for a Scala application?
Posted
by
Dave
on Stack Overflow
See other posts from Stack Overflow
or by Dave
Published on 2012-12-18T00:59:36Z
Indexed on
2012/12/18
5:03 UTC
Read the original article
Hit count: 146
scala
I am working on a small GUI application written in Scala. There are a few settings that the user will set in the GUI and I want them to persist between program executions. Basically I want a scala.collections.mutable.Map that automatically persists to a file when modified.
This seems like it must be a common problem, but I have been unable to find a lightweight solution. How is this problem typically solved?
© Stack Overflow or respective owner