Spring Boot simplifies the creation of robust, scalable, and production-ready Java applications, revolutionizing Java development. Its "convention over configuration" approach, inherent to the Spring ecosystem, minimizes manual setup, allowing developers to focus on business logic instead of boilerplate code. The Spring Tool Suite (STS), a dedicated IDE for Spring development, significantly enhances the Spring Boot experience.
Before starting, ensure you have:
- A Java Development Kit (JDK) installed.
- Spring Tool Suite (STS) installed and configured (download from: https://www.php.cn/link/5dc624e80d9ab94e3229ec29f675c19d).
- Basic understanding of Java and Spring concepts.
Creating and Configuring a Spring Boot Project in STS:
Step 1: Project Creation
- In STS, select "File" > "New" > "Spring Starter Project".
- In the "New Spring Starter Project" dialog, name your project, choose a build tool (Maven or Gradle), select the Spring Boot version, and add necessary dependencies (e.g., "Web" for a web application).
- Click "Finish" to generate the project.
Step 2: Project Structure
Familiarize yourself with the project structure:
-
src/main/java
: Contains your Java source code. -
src/main/resources
: Holds resource and configuration files. -
src/test/java
: Contains your test classes.
Step 3: First Spring Boot Application
The Application.java
file (located in src/main/java
within your default package) contains the main application bootstrap. It uses SpringApplication.run()
to start the application.
The Application.java
class typically looks like this:
package com.newProject; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class NewProjectApplication { public static void main(String[] args) { SpringApplication.run(NewProjectApplication.class, args); } }
Step 4: Running the Application
- Right-click
Application.java
in the Package Explorer. - Select "Run As" > "Spring Boot App".
- Observe the console output showing the application startup process.
- Access the default welcome page in your browser at
http://localhost:8080
(or the port specified inapplication.properties
).
Step 5: Adding a Controller
- Create a
controller
package within yournewProject
>src/main/java
directory. - Create a class (e.g.,
ExampleC
) within thecontroller
package. Use annotations@Controller
,@RequestMapping
, and@ResponseBody
as shown below.
package com.newProject.controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.ResponseBody; @Controller public class ExampleC { @RequestMapping("/firstApp") @ResponseBody public String firstSpringApp(){ return "Welcome!"; } }
- Access the result at
http://localhost:8080/firstApp
.
Conclusion:
This guide demonstrates creating and running a basic Spring Boot application using STS. By following these steps and understanding the project structure, you can leverage the power and ease of the Spring framework to build more complex applications.
The above is the detailed content of How to Run Your First Spring Boot Application in Spring Tool Suite?. For more information, please follow other related articles on the PHP Chinese website!

JavaachievesplatformindependencethroughtheJavaVirtualMachine(JVM),allowingcodetorunondifferentoperatingsystemswithoutmodification.TheJVMcompilesJavacodeintoplatform-independentbytecode,whichittheninterpretsandexecutesonthespecificOS,abstractingawayOS

Javaispowerfulduetoitsplatformindependence,object-orientednature,richstandardlibrary,performancecapabilities,andstrongsecurityfeatures.1)PlatformindependenceallowsapplicationstorunonanydevicesupportingJava.2)Object-orientedprogrammingpromotesmodulara

The top Java functions include: 1) object-oriented programming, supporting polymorphism, improving code flexibility and maintainability; 2) exception handling mechanism, improving code robustness through try-catch-finally blocks; 3) garbage collection, simplifying memory management; 4) generics, enhancing type safety; 5) ambda expressions and functional programming to make the code more concise and expressive; 6) rich standard libraries, providing optimized data structures and algorithms.

JavaisnotentirelyplatformindependentduetoJVMvariationsandnativecodeintegration,butitlargelyupholdsitsWORApromise.1)JavacompilestobytecoderunbytheJVM,allowingcross-platformexecution.2)However,eachplatformrequiresaspecificJVM,anddifferencesinJVMimpleme

TheJavaVirtualMachine(JVM)isanabstractcomputingmachinecrucialforJavaexecutionasitrunsJavabytecode,enablingthe"writeonce,runanywhere"capability.TheJVM'skeycomponentsinclude:1)ClassLoader,whichloads,links,andinitializesclasses;2)RuntimeDataAr

Javaremainsagoodlanguageduetoitscontinuousevolutionandrobustecosystem.1)Lambdaexpressionsenhancecodereadabilityandenablefunctionalprogramming.2)Streamsallowforefficientdataprocessing,particularlywithlargedatasets.3)ThemodularsystemintroducedinJava9im

Javaisgreatduetoitsplatformindependence,robustOOPsupport,extensivelibraries,andstrongcommunity.1)PlatformindependenceviaJVMallowscodetorunonvariousplatforms.2)OOPfeatureslikeencapsulation,inheritance,andpolymorphismenablemodularandscalablecode.3)Rich

The five major features of Java are polymorphism, Lambda expressions, StreamsAPI, generics and exception handling. 1. Polymorphism allows objects of different classes to be used as objects of common base classes. 2. Lambda expressions make the code more concise, especially suitable for handling collections and streams. 3.StreamsAPI efficiently processes large data sets and supports declarative operations. 4. Generics provide type safety and reusability, and type errors are caught during compilation. 5. Exception handling helps handle errors elegantly and write reliable software.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 Linux new version
SublimeText3 Linux latest version

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.
