James Kleeh

Results 29 issues of James Kleeh

Currently something like the following requires special notation to work with GraalVM: ``` @CommandLine.Command(name = "create-controller", description = "Creates a controller and associated test") public class CreateControllerCommand extends CodeGenCommand {...

theme: codegen
theme: annotation-proc
theme: build

Is there an option to do so? If not, how could one achieve this?

For example: `Todo update(@Id UUID id, String name, LocalDateTime createdAt);` where `Todo` is an entity Results in ``` Unable to implement Repository method: TodoRepository.update(UUID id,String name,LocalDateTime createdAt). No possible implementations...

Currently generated source classes for rocker templates include something like ``` static { PlainTextUnloadedClassLoader loader = PlainTextUnloadedClassLoader.tryLoad(gradleProperties.class.getClassLoader(), gradleProperties.class.getName() + "$PlainText", "UTF-8"); PLAIN_TEXT_0_0 = loader.tryGet("PLAIN_TEXT_0_0"); PLAIN_TEXT_1_0 = loader.tryGet("PLAIN_TEXT_1_0"); PLAIN_TEXT_2_0 = loader.tryGet("PLAIN_TEXT_2_0");...

I'm using Rocker to render files of various extensions and after some reading of the source, I found out the files have to end in `.raw` or `.html`. I couldn't...

Add note of Micronaut integration

The PR adds a failing test to demonstrate the issue

``` new DetachedCriteria(Book).build { author { order("name") } join("author", JoinType.LEFT) } ``` results in the author being joined with an inner join

To show the named templates feature

It's just a matter of adding the following to resources.groovy ``` xmlns tx:"http://www.springframework.org/schema/tx" tx.'annotation-driven'('transaction-manager':'transactionManager') ```