I am using https://github.com/angular/quickstart
npm install
npm install java --save
node node_modules/java/postInstall.js
npm install @types/java --save-dev
package.json
"dependencies": {
...
"java": "^0.8.0",
...
},
"devDependencies": {
...
"@types/java": "^0.7.31",
...
},
This is how I added the library in systemjs.config.js
map: {
...
'java': 'npm:java/lib/nodeJavaBridge.js'
},
When I run npm start the output is
Terminal:
304 GET /java/lib/nodeJavaBridge.js
304 GET /java/build/jvm_dll_path.json
404 GET /lodash
404 GET /async
404 GET /path
404 GET /fs
Chrome dev tools console:
http://localhost:3000/lodash Failed to load resource: the server responded with a status of 404 (Not Found)
ZoneAwareError__zone_symbol__error: Error: (SystemJS) XHR error (404 Not Found) loading http://localhost:3000/lodash
Error: XHR error (404 Not Found) loading http://localhost:3000/lodash
...
Error loading http://localhost:3000/lodash as "lodash" from http://localhost:3000/node_modules/java/lib/nodeJavaBridge.js
...
http://localhost:3000/async Failed to load resource: the server responded with a status of 404 (Not Found)
http://localhost:3000/path Failed to load resource: the server responded with a status of 404 (Not Found)
http://localhost:3000/fs Failed to load resource: the server responded with a status of 404 (Not Found)
The code to test that I can load node-java and run java code is something like:
import { Component, OnInit} from '@angular/core';
import * as java from 'java';
@Component({
selector: 'my-app',
template: `<h1>Hello {{name}}</h1>`,
})
export class AppComponent implements OnInit {
name = 'Angular';
ngOnInit() {
var sys = java.import('java.lang.System');
sys.out.printlnSync('Hello from java :)'); // outputs to terminal
var list1 = java.newInstanceSync("java.util.ArrayList");
console.log(list1.sizeSync()); // 0
list1.addSync('item1');
console.log(list1.sizeSync()); // 1
}
}
But the code never gets called because of the missing libraries.
The node_modules/java/lib/nodeJavaBridge.js contains these lines:
var _ = require('lodash');
var async = require('async');
var path = require('path');
var fs = require('fs');
How could I load the node-java library in the angular 2 quickstart app correctly ?