Web application development question.

Asked 2 years ago, Updated 2 years ago, 68 views

I'm learning how to develop the web development I am learning web development through spring eclipse, todo sql, and apache-tomcat.

As far as I can understand, we're going to build a server through spring clipse and tomcat I understood that Todosql receives data through this as a database Maybe this is wrong or I don't know about each relationship.

I would appreciate it if you could explain about this.

sql spring tomcat

2022-09-22 18:51

1 Answers

Eclipse is a tool that supports an integrated development environment. Basically, it is used to develop Java applications, but it can also be used to develop other languages such as PHP by installing plug-ins.

Spring mvc is a framework used to develop Java web applications. Simply put, you can think of it as the base of the application.

You wrote todo, but I think it's toad. Todd is a tool for using databases such as Oracle and mysql. Use this tool to query DB objects or send queries (sql).

Tomcat is a type of WAS and is a middleware used to load Java web applications and provide web services.

Taken together, the Java Web application is developed as an Eclipse development tool, but the application is spring-based and uses a database as a storage device, and the web service is Tomcat. That's about it.


2022-09-22 18:51

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.