Decebal Suiu
Decebal Suiu
See: - https://github.com/decebals/pf4j-jpms (it contains some ideas and probably some code in the near future) - https://github.com/decebals/jpms-demo (it contains a very simple demo for JPMS - it's the same demo...
@npurushe I don't think that https://github.com/requery/requery/issues/628 is solved. In https://github.com/requery/requery/blob/master/requery/src/main/java/io/requery/sql/ConnectionTransaction.java#L168 it 's necessary to call `close` method, like in `commit` (see https://github.com/requery/requery/blob/master/requery/src/main/java/io/requery/sql/ConnectionTransaction.java#L150)
Let's take the example from readme: ```java Result query = data .select(Person.class) .where(Person.NAME.lower().like("b%")).and(Person.AGE.gt(20)) .orderBy(Person.AGE.desc()) .limit(5) .get(); ``` Is it a possibility to inspect (via `println` or IDE's debugging) the select...
I have a scheduled task, but I want to force execution of this right now. Let's say that I defined a recurrent task that import some data in database, every...
For a long time I have been thinking about how I could write a web application with as much UI code as possible in Java. I like the approach with...
For example now, I have in `Application` class methods as: - `setTemplateEngine` - `setRouter` My idea is to add as dependency the tiny `inject-api` library in `pom.xml` (probably with scope...
The idea is that I used with success another, more natural approach. First of all I injected the needed services directly in Controller class: ```java import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import...
In my `TestCntroller.java` I have a web method like: ```java @POST("/test") public void test(@Param FileItem[] files) { return getResonse().ok().text("Test"); } ``` In HTML template I have something like: ```html //...