ninja
ninja copied to clipboard
Ninja is a full stack web framework for Java. Rock solid, fast and super productive.
The SuperDevMode is really useful in speeding up the development process. However the lack of "mvn ninja:debug" is a significant gap. The use of m2eclipse for debugging requires Eclipse, while...
I have ClassA containing ``` @Schedule(delay = 120, initialDelay = 0, timeUnit = TimeUnit.SECONDS) public void task1() throws Exception { ``` And ClassB containing ``` @Schedule(delay = 120, initialDelay =...
I am using eclipse with maven to debug my project. I create a new project and integrate it to eclipse. Then i open my application.conf in order to modify application.secret...
Hello, im working on a plain and simple json api and thus i was not pleased to map each method in the controller by hand and i found jaxy quite...
My Router: ``` router.POST().route("/api/users.json").with(UserController.class, "create"); ``` My Controller method: ``` public Result create(@JSR303Validation UserDTO user, Context context, Validation validation) { Boolean isSuccess = validation.hasBeanViolations(); System.out.println("=====>" + isSuccess); UserDTO newUser =...
I have tried every way listed to get form field parameters in a form containing file uploads but i can only get the files. how can i retrieve the regular...
My JPA entities are held in a separate library, included via maven's dependency resolve mechanism. The problem is that when i run mvn ninja:run the command fails with java.io.FileNotFoundException: /home/user/dev/workspaces/eclipse4.4/ninja-test/target/classes/lib/Entities-1.0.0.jar...
Looking at [forum](https://groups.google.com/forum/#!searchin/ninja-framework/flash/ninja-framework/D1Oh0xmVE4c/6mdB21GRqTkJ) not only me is wondering why powerful flash scope idea is reduced to absolute minimum - store String key and String value. Image how wonderful it would...
Hi there. I was wondering why there is no a JsonParam extractor in order to get deserialize a json String to a java object. Ninja Framework already support json but...
Hello, The properties are `ninja.external.configuration` and `ninja.external.reload`, as per the documentation. However, they do not work when run from maven plugin. See PR #365 for the correction. PS : I...