Java Frameworks Vs (HTML5 + Java Script Frameworks)

The_Small_k

The_Small_k

@the-small-k Oct 14, 2024
Hello friends
I have two architecture to develop a web client application

  1. Using java frameworks like Struts1, Struts2, JSF, Spring MVC.
  2. Using HTML5 + Bootstramp + Angular JS + JQuery.

I have to analyse the
  • Application Performance
  • Application Security
  • Application maintenance
Can Anyone help me to analyse these scenario ?

Replies

Welcome, guest

Join CrazyEngineers to reply, ask questions, and participate in conversations.

CrazyEngineers powered by Jatra Community Platform

  • Anoop Kumar

    Anoop Kumar

    @anoop-kumar-GDGRCn Feb 27, 2014

    If your project is only for web based go for HTML5 + Bootstramp + Angular JS + JQuery.

    If business logic and security is only concern then java.
    Java is used for flexibility and security, and for performance here is the little story

    Knock knock ...
    Who is this...
    .
    .
    .
    .
    Java
  • The_Small_k

    The_Small_k

    @the-small-k Feb 27, 2014

    @#-Link-Snipped-# Actually the architecture is like this (Enterprise App + Web App)
    So for the Web app we have 2 option to go as i mentioned above. Now As we know Angular JS execute on client side so it should be faster to use angular js as a controller insted of java framework like Struts and others isn't it ?
  • Manish Goyal

    Manish Goyal

    @manish-r2Hoep Feb 27, 2014

    Sessions can't be managed through Javascript, but you can manipulate cookies that i believe can be a possible alternative
  • The_Small_k

    The_Small_k

    @the-small-k Feb 27, 2014

    @#-Link-Snipped-# I think HTML5 comes with sessionstore that is more secure than local cookies isn't it ?
  • Anoop Kumar

    Anoop Kumar

    @anoop-kumar-GDGRCn Feb 27, 2014

    You can store anything in HTML5 in name/value pair.
    You can store large data without sending back to server. I am not sure how secure is it😒
    <a href="https://www.w3schools.com/html/html5_webstorage.asp" target="_blank" rel="nofollow noopener noreferrer">HTML Web Storage API</a>