Springboot快速入门教程

作者:红旗下的小兵 时间:2023-03-02 21:50:56 

入门Springboot

项目创建在IDEA中创建即可。

注意点:

1、所有文件都需要放在 :

Application文件的同级或下级目录中

2、application.properties 为 spring-boot 项目主核心配置文件,且只能有一个核心配置文件。

Springboot快速入门教程

3、多环境下的核心配置文件的使用, 文件名必须以 application- 开头!
  application-xxx.properties

Springboot快速入门教程 

(1)开发环境


# 开发环境配置文件
server.port=9000
server.servlet.context-path=/

(2)测试


# 测试环境配置文件

(3)生产环境


# 生产环境配置文件
server.port=7000

在主核心配置文件中激活我们自定义的配置文件:


#激活我们编写的application-xxx.properties配置文件
spring.profiles.active=dev

4、@Value 注解

spring-boot核心配置文件 自定义的配置属性,如何获取
下边方式只能一个一个属性获取!
比如:在application.properties文件中自定义了一个配置 website=http://www.baidu.com
在项目中获取到这个自定义的配置:

使用注解 @Value("${website}") 

也可以写一个默认值,如果配置项没有,会使用默认值@Value("${website: 默认值}") 


package com.lxc.sprint_boot_01.web;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

import javax.management.ValueExp;
import javax.print.DocFlavor;

// 声明控制层
@Controller
public class IndexController {
   @Value("${website:values}")
   private String name; // 此时website值会赋给name属性

@RequestMapping(value = "/self")
   @ResponseBody
   public String self() {
       return name;
   }
}

5、@Component 和 @ConfigurationProperties(prefix="xxx") 注解

spring-boot核心配置文件 将我们自定义的配置属性,映射为一个对象(获取的是一个对象),使用这种方式的前提:配置文件中的属性必须要写前缀!

application.properties文件


# 属性前边必须要有前缀,我这里前缀是user
user.name=lxc
user.password=123456

 config -> user.java文件

Springboot快速入门教程


package com.lxc.sprint_boot_01.config;

import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;

@Component // 将此类交给spring容器管理
@ConfigurationProperties(prefix = "user") // 配置属性注解,参数前缀必须有值,值为我们定义的前缀
// 配置完上边的两个注解,下边把配置文件中的属性映射到下边类中去
public class User {
   private String username;
   private String password;

public String getUsername() {
       return username;
   }

public void setUsername(String username) {
       this.username = username;
   }

public String getPassword() {
       return password;
   }

public void setPassword(String password) {
       this.password = password;
   }
}

调用属性


package com.lxc.sprint_boot_01.web;

import com.lxc.sprint_boot_01.config.User;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

import javax.management.ValueExp;
import javax.print.DocFlavor;
import java.util.HashMap;
import java.util.Map;

// 声明控制层
@Controller
public class IndexController {
   @Autowired // @Autowired 把User类注入进来
   private User user;

@RequestMapping(value = "/many")
   @ResponseBody
   public String many() {
       return "user为:"+user.getUsername() + ",密码为:"+user.getPassword();
   }

}

Springboot快速入门教程

6、加上@ConfigurationProperties注解,会出现上边红色警告,想解决此问题需要加一个依赖包:

Springboot快速入门教程


<dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-configuration-processor</artifactId>
</dependency>

7、如果在application.properties中有中文,会出现乱码,在IDEA中解决中文乱码的问题:

Springboot快速入门教程

8、在配置文件中属性的键值对不能有空格,否则解析会有问题!

9、spring-boo集成JSP

首先在main文件夹下创建 webapp文件夹,然后 点击 file -> project structure -> Modules  如下图:

Springboot快速入门教程

然后在弹出的对话框中点击右边文件,找到我们刚才创建的webapp文件夹,确定即可,具体如下:

Springboot快速入门教程

 此时,webapp会变为如下样子。

Springboot快速入门教程

配置pom.xml文件

(1)首先引入spring-boot内嵌的tomcat对jsp的解析依赖,不添加解析不了jsp


<!--引入spring-boot内嵌的tomcat对jsp的解析依赖,不添加解析不了jsp-->
<dependency>
   <groupId>org.apache.tomcat.embed</groupId>
   <artifactId>tomcat-embed-jasper</artifactId>
</dependency>

(2)spring-boot默认使用的是前端引擎thymeleaf,现在我们要使用springboot继承jsp,需要手动 指定jsp最后编译的路径,而且springboot继承jsp的路径是springboot规定好的位置: META-INF/resources


<build>
   <!--spring-boot默认使用的是前端引擎thymeleaf,现在我们要使用springboot继承jsp,需要手动指定jsp最后编译的路径,而且springboot继承jsp的路径是springboot规定好的位置:META-INF/resources-->
   <resources>
       <resource>
           <!--源文件-->
           <directory>src/main/webapp</directory>
           <!--指定编译路径:-->
           <targetPath>META-INF/resources</targetPath>
           <!--指定源文件夹中的哪些资源需要被编译-->
           <includes>
               <include>*.*</include>
           </includes>
       </resource>
   </resources>
   <plugins>
       <!-- ··· -->
   </plugins>
</build>

最后一步:在 application.properties 中配置视图解析器


# 配置视图解析器
spring.mvc.view.prefix=/ # 前缀
spring.mvc.view.suffix=.jsp # 后缀

创建.jsp页面,测试:


<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
   <title>Title</title>
</head>
<body>
 <h1>${msg}</h1>
</body>
</html>

package com.lxc.boot_02;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;

@Controller
public class controller {
   // 写法一:
   @RequestMapping(value="/say")
   public ModelAndView say() {
       ModelAndView mv = new ModelAndView();
       // 给视图传值
       mv.addObject("msg", "hello");
       // 设置 最终视图的名称
       mv.setViewName("say");
       return mv;
   }

// 写法二:把视图和模型拆分开,返回一个视图(return的是视图的名字)
   @RequestMapping(value = "/index")
   public String index(Model model) {
       model.addAttribute("msg", "lxc;");
       return "say";
   }
}

 写法一:

Springboot快速入门教程

写法二:

Springboot快速入门教程

来源:https://blog.csdn.net/qq_42778001/article/details/118101736

标签:Springboot,用法
0
投稿

猜你喜欢

  • Android Studio自动提取控件Style样式教程

    2022-01-29 14:09:55
  • c#实现输出的字符靠右对齐的示例

    2023-02-26 12:23:39
  • 解决javaWEB中前后台中文乱码问题的3种方法

    2023-03-22 22:39:26
  • interrupt()和线程终止方式_动力节点Java学院整理

    2021-09-27 08:50:53
  • java自定义异常打印内容详解

    2022-03-10 23:58:32
  • C#实现TCP连接信息统计的方法

    2022-12-04 16:31:46
  • Java数据结构之优先级队列(PriorityQueue)用法详解

    2023-11-18 13:00:50
  • 浅谈MyBatis通用Mapper实现原理

    2022-11-18 18:45:16
  • Android开发实现图片的上传下载

    2022-10-21 03:41:10
  • Spring注解驱动之BeanDefinitionRegistryPostProcessor原理解析

    2023-11-24 23:24:21
  • 实例代码讲解JAVA 观察者模式

    2023-09-11 19:22:18
  • C# 4.0 大数的运算--BigInteger的应用详解

    2022-02-02 06:40:05
  • spring boot 枚举使用的坑整理

    2022-09-17 09:03:15
  • 两路归并的数组与链表的实现方法

    2021-10-28 04:32:15
  • Android实现字母雨的效果

    2023-12-13 02:26:33
  • 将应用程序进行Spring6迁移的最佳使用方式

    2021-08-28 12:03:58
  • 使用java实现http多线程断点下载文件(二)

    2021-06-08 04:26:17
  • Android实现USB扫码枪获取扫描内容

    2023-09-08 00:56:31
  • C#实现计算器功能(winform版)

    2021-07-16 06:40:15
  • 利用OPENCV为android开发畸变校正的JNI库方法

    2021-10-06 17:33:27
  • asp之家 软件编程 m.aspxhome.com