skip to Main Content

Return Html page using RestController in Spring Boot

I am trying to get the HTML page that I created. This is the structure of my project: This is the "IndexController" class: @RestController @AllArgsConstructor @RequestMapping(path = "/webpage") public class IndexController { @GetMapping(path = {"mainpage"}) @ResponseBody public String index(){ return…

VIEW QUESTION

How to improve my website in loading the data/ sorting/ jquery? And Best Practices for web development – Html

I am building a website to visualize the data in table like these: index.html: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Employee Data</title> <!-- Load CSS --> <link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.10.25/css/jquery.dataTables.min.css"> <!-- Load Custom CSS --> <style> body { font-family: Arial,…

VIEW QUESTION

JavaScript onclick redirecting not working – Html

Here you can see my website and error when I click on button my website is not redirecting to that link only website start reloading function send() { var name = document.getElementById('name').value; var email = document.getElementById('mail').value; var message = document.getElementById('descriptions').value;…

VIEW QUESTION
Back To Top
Search