Skip to main content

How To Provide Explicit Mapping In Spring Boot Project

How To Provide Explicit Mapping In Spring Boot Project 


Normally Whenever we configure and start our first spring boot project and check in localhost:8080 it will display Whitelabel Error Page because 
there is no explicit mapping found , Today we will learn how to provide an explicit mapping.

  • Open your IntelliJ IDE & go to your project 
  • Right Click on your project and select the new package as shown below


  • Give package name as the controller
           
  • After that Right Click on the package and select new java class and named as HelloMessage
  • After That Write The controller code as shown below

  • After that restart the server and open browser and type localhost:8080

Enjoy Explicit Mapping  !!!!!

Comments

Popular posts from this blog

How To Run Spring Project After Generate From Spring Initializer

How To Run Spring Project After Generate From Spring Initializer After Generating project from Spring initializer copy generated zip project on any folder like have created a folder in c:\intellijworkspace here paste zip project and extract it as shown below. After that open command prompt and go inside the project directory as shown below           After that inside project folder type command mvn, clean install and press enter as shown below After that project build process started as shown below Finally, Build Process Completed with success message as shown below After Build Successfully to run project type command mvn spring-boot :run as shown below Finally, project up successfully on port 8080 as shown below. To check project status open browser and type localhost:8080 it will display an error page that indicates project run successfully as shown below Now Enjoy Spring Boot ...