Can Javascript in Java Web Application cope together?
-
In my web application (Java EE on beans) I need to display diagrams, actually it's the main part of the application. The diagrams will be pretty much sophisticated and need to be good looking. Users will be able to add/delete/modify elements, create new diagrams and etc. I think javascript is pretty good for that job. Can javascript work appropriately in Java EE environment or will I have to face a lot of trouble configuring it and looking for workarounds to make it work?
-
Answer:
Javascript has nothing to do with Java. JavaScript is a client side technology that's entirely interpreted by the browser and nothing to do with JVM.
Vivek Vermani at Quora Visit the source
Other answers
Yep. Javascript makes sense. If you had to only display diagrams, you could do the logic on server and send the diagram in a browser displayable format (svg or any image format), Since you say, user will be able to update the elements, the only option I see is using client side languages and frameworks. My suggestion is to find a good Javascript framework that supports MVC and make use of it to convert diagram attributes into a model and get it synced with server.
Chandra Mohan
Javascript is primarily a client side, prototype scripting language, it has nothing to do with your Java EE environment. It communicates primarily with the browser and DOM, so any configuration would have to be on that side. That said, I would suggest you go for something like JQuery UI which provide a whole lot of plugins, that can be used, without having to write too much code.
Ratnakar Sadasyula(à°°à°¤à±à°¨à°¾à°à°°à± సదసà±à°¯à±à°²)
of-corse, you can use Javascript in parallel with any other Server-Side language including Java. Javascript has nothing to do with server side languages, it communicates directly with DOM and Browser. As per your requirements it will be very useful to use Javascript for diagrams and other visualization. Use JSON encoded data for the Javascript data source
Asim Muhammad
Javascript is good... But You can also use jquery... It provides plugins for diagrams etc.
Abhishek Jain
Of course. You can use Java as a scalable server platform and access it via JavaScript. But in general they don't have anything to do with each other.
Thomas Symalla
Related Q & A:
- How to review a web application code?Best solution by Stack Overflow
- How to develop a web application?Best solution by Stack Overflow
- how to integrate bi reports in my web application?Best solution by Stack Overflow
- How to load a Java web app in the terminal?Best solution by stackoverflow.com
- Is it possible to send message to Chrome Extension from Java Desktop Application?Best solution by Stack Overflow
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.