Web applications implemented in two languages

Asked 2 years ago, Updated 2 years ago, 110 views

You want to implement one dynamic web application using two languages: jsp, node.js (express). It's a site with community functions such as login and bulletin board.

As a result of googling with the questions I posted before, I heard that you can implement a single web application by changing the port using Apache's proxy.

If you're done setting up Apache proxy, When the main page is implemented as node.js (express) and the membership part is implemented as jsp, can I move right away when I click the membership button on the main page?

I still have little knowledge about the server, so the questions are vague.ㅜ <

Then, the hosting server, not the local server? When I implemented and created a virtual server that can be accessed from other computers, the database is also implemented on the virtual server, so I think I can access the same mysql from the membership or main page, so I would like to ask if it is possible to access it~

apache node.js jsp

2022-09-22 21:29

1 Answers

I think it would be helpful to study microservices .

The bottom part is the part that is handled by the client. This is possible if the proxy has proper routing processing.

location.href = "/join.jsp" 


2022-09-22 21:29

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.