快速入门Spring Boot
程序员文章站
2022-07-12 16:07:47
...
IDEA版本:
首先:pom.xml ->SpringBoot依赖
<!--SpringBoot父级依赖-->
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.4.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<!--SpringBoot开发WEB的起步依赖-->
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!--测试的起步依赖-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
application.properties文件小零件:
server.port=8080//设置端口
server.servlet.context-path=/02-springboot//设置路径
spring.mvc.view.prefix=/
spring.mvc.view.suffix=.jsp
开发:application-dev.properties
测试:application-test.properties
上线:application-online.properties
在application.properties文件中写spring.profiles.active=dev/test/online的时候可以自动加载对应的.properties文件
springmvc注解:
@Controller -->即为处理http请求
@RestController-->是spring4后新增的注解;@[email protected][email protected]
其次还有@GetMapping、@PostMapping、@PutMapping、@DeleteMapping同上都是组合注解。
其次:SpringBoot使用JSP
首先要在pom.xml中加入支持JSP页面的依赖
<!--引入SpringBoot内嵌的Tomcat对JSP的解析包-->
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-jasper</artifactId>
</dependency>
<!--Servlet依赖的jar包start-->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
</dependency>
<!--jsp依赖的jar包start-->
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>javax.servlet.jsp-api</artifactId>
</dependency>
<!--jstl依赖的jar包start-->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
</dependency>
其次在Eclipse里不需要加下面的这段依赖,但在idea里是需要加这段代码依赖的,运行后idea会把jsp页面编译到rarget下的META-INF/resources下,不然找不到jsp页面。
<--在<build>里加,和<plugins>标签同级别-->
<resources>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.xml</include>
</includes>
</resource>
<resource>
<directory>src/main/resources</directory>
<includes>
<include>**/*.*</include>
</includes>
</resource>
<resource>
<directory>src/main/webapp</directory>
<targetPath>META-INF/resources</targetPath>
<includes>
<include>**/*.**</include>
</includes>
</resource>
</resources>
到此就结束了。
欢迎转载,但请标明出处!!!
上一篇: Spring 自定义返回异常
下一篇: JMS系列教程
推荐阅读
-
【spring-boot 源码解析】spring-boot 依赖管理梳理图
-
Spring boot 入门(一):快速搭建Spring boot项目
-
ThinkPHP3.1基础知识快速入门
-
只需一步,在Spring Boot中统一Restful API返回值格式与统一处理异常
-
Spring Boot Security OAuth2 实现支持JWT令牌的授权服务器
-
spring boot2.0.4集成druid,用jmeter并发测试工具调用接口,druid查看监控的结果
-
使用Spring boot + jQuery上传文件(kotlin)功能实例详解
-
spring boot + jpa + kotlin入门实例详解
-
快速入门:CDR中常用工具方法介绍
-
MySQL新手入门指南--快速参考