SpringBoot实现页⾯前后台交互Web功能
Spring boot可实现Web开发功能,简化框架的配置,可以快速开发,以下是精简的步骤:
1.使⽤Maven构建项⽬,Artifact Id选择maven-archetype-quickstart
2.添加pom依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
<version>2.0.2.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>2.0.2.RELEASE</version>
</dependency>
<dependency>
3.新建src/main/resources/templates包结构
4.Spring boot启动,页⾯前后台交互
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
springboot框架的作用@SpringBootApplication
public class App
{
@RequestMapping("/getPage")
public String getMyPage() {
return"myPage";
}
public static void main( String[] args )
{
new SpringApplication(App.class).run(args);
}
}
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论