bootique
bootique copied to clipboard
Bootique is a minimally opinionated platform for modern runnable Java apps.
A scenario that I have is an app with preset bundled configurations that are chosen with command line flags like `--qa`, `--prod`. And I don't want to expose `--config` to...
While there can be an app-specific [embedded console](https://github.com/bootique/bootique/issues/86), another somewhat related idea is to develop a tool called `bq`, that is a Swiss army knife of Bootique, helping with app...
http://tldp.org/LDP/abs/html/tabexpansion.html
On startup I noticed `TypeFactory.getTypes` is being called twice: * from `BQCoreModule.provideConfigHierarchyResolver` * from `BQCoreModule.provideJacksonService` Perhaps we can optimize the call to cache the resolved values.
Project for create bootique boilerplate: ## Choose: 0. Group/Artifact/Package Name 1. Build System 2. Bootique Modules 3. Is Application/Module 4. Language ## Download archive with project
I'm found that our jackson configuration (or jackson itself) doesn't support references, for example: ``` - step: &id001 instrument: Lasik 2000 pulseEnergy: 5.0 pulseDuration: 10 repetition: 500 spotSize: 2mm -...
Improvement of #115. Currently if we can't fold on space, we simply break the words in the end of the line without regards to semantics. I guess we can improve...
One of the benefits of Bootique is its flexibility in regards to the core framework services. Let's start taking advantage of that and provide various styles of command to option...
Consider using JSR-349 (Bean Validation) for service factories loaded via ConfigurationFactory. Would be nice to declare property value expectations explicitly.
When `-Dbq.trace` is on, let's print explicit property overrides. Can be useful in debugging.