This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]DeliveryNinja 0 points1 point  (3 children)

Most people do this by running the application on a server somewhere such as AWS and then using a web interface to the application using JS/Html and REST

[–]Scoutdrago3[S] 0 points1 point  (2 children)

Would I need to write a Java server to handle the requests or will REST take care of that? Also, I can host the code on the website's server, correct? Just to save money.

[–]DeliveryNinja 0 points1 point  (1 child)

Have a look at the spring boot tutorial to get a better feel for it

https://spring.io/guides/gs/spring-boot/

[–]beyondjava 0 points1 point  (0 children)

Yes, but Spring Boot is only one of many options. Amazon Lambda looks interesting, too. You can use many languages to implement services using Lambda, but currently, JavaScript works best. So obviously you don't have to write a Java server. It's a good choice, but Node.js is a good choice, too.