How to use angularJs in GWT?

I want to integrate angularJs into an existing GWT application. I am new to angularJs. Where to begin?

thanks

+6
source share
2 answers

Take a look at

AngularGWT . This is a library that allows authors to write components or populate applications for AngularJS in Java. This is mainly done using compilation for the Google Web Toolkit to "compile" Java code in Javascript.

+5
source

AngularGWT is the way to go. But if you need an easy way, include angular.js in your * .html file and use JSNI to access Angular JS from your code.

+4
source

Source: https://habr.com/ru/post/970172/


All Articles