mppfiles
mppfiles
Nice idea, I would suggest a smaller one, because of the small terminal panel in IDEs. Something like [this](https://github.com/yeoman/yeoman/pull/108#issuecomment-6569477).
Looks nice! A little bit smaller would work too.
> It is hard to get it smaller and have a Java font thicker than the Lite part... Didn't even noticed that! 😅 👍🏽
maybe move this issue to [javalite-site](/javalite/javalite-site)?
a simple but common case is to encapsulate access to session objects in controllers and filters, to make some DSL'ish api: ````java public ShoppingCart getShoppingCart() { return (ShoppingCart)session().get("shopping_cart"); } ````...
Agreed, it will look odd. And I prefer not to mess with the TL's. I'm currently doing something like this, it works so far: ````java public class SessionHelper extends HttpSupport...
I already use a `BaseController`... as well as a `BaseFilter`... :smile: The trick is to share code between them!
I'm not entirely sure, but somewhere I read that it's "feature equivalent" so... maybe.
It would be very very simple (example for Postgres): ````sql create schema mytest; create table mytest.city ( id serial primary key, name text not null ); create table mytest.trip (...
Looks good, maybe we can reuse the existing Association class?