Perform web app with angular and java [closed]

0

Good friends, that's my question, is it possible to make a web application using java backend? I have read that they use angular with php and / or webservices, but nevertheless I have not seen much info about java, is it possible to bring data to the view using java classes? I welcome your comments and / or suggestions

    
asked by Jdeveloper 06.07.2017 в 01:44
source

1 answer

3

Yes you can. What matters on the Java side is generating the microservices. There are some frameworks that can help you with this:

  • Spring Boot , which is a pivotal offering and based on the Spring framework.
  • Dropwizard , which also allows the creation and integration of microservices.
  • JHipster , which provides the basis for generating a Web application in Angular (versions 1, 2 and 4) and backend with SpringBoot.
  • Use an ESB such as Mule or Fuse. This option can be a bit heavier but it is also an alternative if you need to use more backend-side functionalities such as file processing, sftp, queues, etc.
  • It can also be done using JAX-RS and a light / partial application server that are customized to provide only what is needed as it would be Wildfly Swarm .
  • A very interesting option is also the one of Amazon Lambda and its proposal of computing without a server ( known as serverless computing ). I would recommend checking your Java documentation . It has its particular SDK and its guidelines, so it is very likely that it is very different from the previously mentioned options.
answered by 06.07.2017 в 01:54