'. '

Knockout4Java

From APIDesign

(Difference between revisions)
Jump to: navigation, search
(Knockout for Java)
(Pointer to DukeScript archetype, that one isn't obsolete)
Line 3: Line 3:
== Knockout for [[Java]] ==
== Knockout for [[Java]] ==
-
Are you coming from a [[Java]] camp, yet interested in rendering via [[HTML]]? Well, then you can either use [[DukeScriptInNetBeans]] or stay on command and be just three steps (in case you have [[Maven]] and [[JDK]]7 installed) away from reaching a nirvana. Just type:
+
Are you coming from a [[Java]] camp, yet interested in rendering via [[HTML]]? Well, then you can either use [[DukeScriptInNetBeans]] or stay on command and be just three steps (in case you have [[Maven]] and [[JDK]]7 installed) away from [https://dukescript.com/update/2015/02/05/New-Version-of-Dukescript.html reaching a nirvana]. Just type:
<source lang="bash">
<source lang="bash">
$ mvn archetype:generate \
$ mvn archetype:generate \
-
-DarchetypeGroupId=org.apidesign.html \
+
-DarchetypeGroupId=com.dukescript.archetype \
-
-DarchetypeArtifactId=knockout4j-archetype \
+
-DarchetypeArtifactId=knockout4j-archetype \
-
-DarchetypeVersion=1.1.2 \
+
-DarchetypeVersion=0.16
-
-Dbck2brwsr=true
+
</source>
</source>
Line 17: Line 16:
<source lang="bash">
<source lang="bash">
$ cd myfirstbrwsrpage
$ cd myfirstbrwsrpage
-
$ mvn process-classes exec:java
+
$ mvn package
 +
$ mvn -f client process-classes exec:exec
</source>
</source>

Revision as of 06:14, 17 January 2017

Knockout4Java is one of the subprojects of DukeScript. It builds on Knockout.js, which is a powerful and attractive JavaScript library. It is lightweight and does its job (e.g. binding between a model and an HTML page) so well, that I decided to use it in my Bck2Brwsr and FXBrwsr projects and bind it together with JSON4Brwsr APIs.

Knockout for Java

Are you coming from a Java camp, yet interested in rendering via HTML? Well, then you can either use DukeScriptInNetBeans or stay on command and be just three steps (in case you have Maven and JDK7 installed) away from reaching a nirvana. Just type:

$ mvn archetype:generate \
	-DarchetypeGroupId=com.dukescript.archetype \
	-DarchetypeArtifactId=knockout4j-archetype \
	-DarchetypeVersion=0.16

Answer few questions (for example choose myfirstbrwsrpage as artifactId) and then you can:

$ cd myfirstbrwsrpage
$ mvn package
$ mvn -f client process-classes exec:exec

In a few seconds (or minutes if Maven decides to download the whole Internet of dependencies) you should see a sample Hello World application. It is basically composed from one Java and one HTML file:

$ ls src/main/java/**/DataModel.java
$ ls src/main/webapp/pages/index.html

Play with them, modify them. Of course, if you use any good IDE that speaks Maven (hint try NetBeans version 7.3 or higher). Your development comfort even increases. For example you'll be able to debug your Java code.

You can also execute the project in a browser, see Bck2BrwsrViaCLI.

Contribute

The Knockout4Java is now a NetBeans project (see its wiki) and the main development repository is hosted at http://hg.netbeans.org/html4j/ The project is dual licensed under CDDL and GPLwithClassPathException (the same license as rest of NetBeans code), so it should be friendly enough to be used in your own applications.

Your contributions are more than welcomed. Let's make this project a base for modern user interface based on HTML for next version of NetBeans and other platforms that can render HTML!

Let me know what features you miss and what other you'd like to see in the FXBrwsr project.

<comments/>

Personal tools
buy