Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

What was tested

Spring Boot Framework

It has been checked what possibilities it has.
Entirely based on Java and uses the latest capabilities of the language.
Allows to create stand-alone Web Services.

Image Added

Multidatabase access

Unfortunately, using Hibernate can cause long data access times, because Catalog uses extended SQL queries.
Therefore, light and more simple ways to access

...

MySQL databases should be used.

To testing multidatabase access with Spring Boot Framework was used basic service for managing a set of JDBC drivers.
They fulfilled their task and allowed to correctly select the database from which the data was downloaded.

Web services

Web Services are the part of the Spring Boot Framework. Creating new WS requires marking the access path in the URL and specifying the returned data, if any.

Code Block
@RestController
public class HelloController {

    @RequestMapping(value="/hello")
    public String sayHelloWorld() {
        return "Hello World\n";
    }
}


Tool development plans

Separation of UI and API

...