springboot整合ssm

本文详细介绍了如何将Spring Boot与Spring、Struts和MyBatis(SSM)进行整合。内容包括Spring Boot的Web开发配置,如静态资源和主页面设置;多环境配置的实现方式;MyBatis的整合步骤,包括POM配置、Mapper接口和YAML配置;以及整合过程中的异常处理和总结。
摘要由CSDN通过智能技术生成

SpringBoot SSM整合

一、Spring Boot整合Web开发

1.默认静态资源配置

WebMvcAutoConfiguration该类下找到属性:ResourceProperties进入可查看到:
Spring Boot 默认将 /** 所有访问映射到以下目录:

classpath:/static
classpath:/public
classpath:/resources
classpath:/META-INF/resources

如:在src/main/resources目录下新建 public、resources、static 三个目录,并分别放入 a.jpg b.jpg c.jpg 图片

均能正常访问相应的图片资源。那么说明,Spring Boot 默认会挨个从 public resources static 里面找是否存在相应的资源,如果有则直接返回。

2.在application配置

在application.properties中添加配置:

注意:通过spring.mvc.static-path-pattern这种方式配置,会使Spring Boot的默认配置失效,也就是说,/public /resources 等默认配置不能使用。
配置中配置了静态模式为/static/,就只能通过/static/来访问。

spring:
  mvc:
    static-path-pattern: /static/**
3. 配置主页面

WebMvcAutoConfiguration:默认:index.html

在静态资源下 public、resources、static可直接访问

@Bean
public WelcomePageHandlerMapping welcomePageHandlerMapping(ApplicationContext applicationContext) {
   
    return new WelcomePageHandlerMapping(new 		  	       TemplateAvailabilityProviders(applicationContext),
                     applicationContext, getWelcomePage(),                     	this.mvcProperties.getStaticPathPattern());
}

二、SpringBoot多环境配置

引言

我们在开发Spring Boot应用时,通常同一套程序会被应用和安装到几个不同的环境,比如:开发、测试、生产等。其中每个环境的数据库地址、服务器端口等等配置都会不同,如果在为不同环境打包时都要频繁修改配置文件的话,那必将是个非常繁琐且容易发生错误的事。

语法结构

在Spring Boot中多环境配置文件名需要满足application-{profile}.yml的格式

其中{profile}对应你的环境标识,比如:

  • application-dev.yml:开发环境
  • application-test.yml:测试环境
  • application-prod.yml:生产环境

示例

#分别创建
- application.yml	    #默认环境
- application-dev.yml: #开发环境  localhost
- application-test.yml:#测试环境  test-server
- application-prod.yml:#生产环境   阿里云/腾讯云

不同进行测试。默认只会进入application.yml。

至于哪个具体的配置文件会被加载,需要在application.yml文件中通过spring.profiles.active属性来设置,其值对应{profile}值。

spring:
   profiles:
      active: dev

启动项目指定环境

启动打包的jar包时,可能使用的是 java -jar myjavaapp.jar来启动项目,如果我们需要制定特定的环境启动只需要加上一个启动属性即可轻松完成一个jar在不同环境通用的效果

java -jar myapp.jar --spring.profiles.active=dev

总结

application.yml中配置通用内容,并设置spring.profiles.active=dev,以开发环境为默认配置

application-{profile}.yml中配置各个环境不同的内容

三、SpringBoot整合MyBatis

1、新建SpringBoot工程

2、POM.XML SSM
    <dependencies>
        <!-- spring web mvc-->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <!-- spring mybatis -->
        <dependency>
            <groupId>org.mybatis.spring.boot</groupId>
            <artifactId>mybatis-spring-boot-starter</artifactId>
            <version>2.1.0</version>
        </dependency>
        <!-- mysql 驱动-->
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <scope>runtime</scope>
        </dependency>

        <!-- 热部署 -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-devtools</artifactId>
            <optional>true</optional>
        </dependency>

        <!-- 单元测试 -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>
 <!-- druid 数据源连接池 -->
        <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>druid-spring-boot-starter</artifactId>
            <version>1.1.10</version>
        </dependency>
3、bean代码
@Data
public class User {
   
    private Integer id;
    private String name;
    private String telphone;
    private Integer status;  
}
4、mapper代码
@Mapper  //MapperScannerConfigurer 自动扫描 将Mapper接口生成代理注入到Spring DAO接口所在包名,Spring会自动查找其下的类
public interface UserMapper {
   
    List<User> selectAll();
    ........
}
5、application.yml配置
server:
  port: 8080

spring:
  #数据源连接配置
  datasource:
    name: test
    type: com.alibaba.druid.pool.DruidDataSource
    druid: #druid相关配置
      url: jdbc:mysql://localhost:3306/maven_ssm
      driver-class-name: com.mysql.jdbc.Driver
      username: root
      password: root
      #监控统计拦截的filters
      filters: stat
      #配置初始化大小/最小/最大
      initial-size: 1
      min-idle: 1
      max-active: 20
      #获取连接等待超时时间
      max-wait: 60000
      #间隔多久进行一次检测,检测需要关闭的空闲连接
      time-between-eviction-runs-millis: 60000
      #一个连接在池中最小生存的时间
      min-evictable-idle-time-millis: 300000
      validation-query: SELECT 'x'
      test-while-idle: true
      test-on-borrow: false
      test-on-return: false
      #打开PSCache,并指定每个连接上PSCache的大小。oracle设为true,mysql设为false。分库分表较多推荐设置为false
      pool-prepared-statements: false
      max-pool-prepared-statement-per-connection-size: 20


#整合myBatis
mybatis:
  mapper-locations: classpath:mapper/*.xml   # mapper映射对应的配置文件位置.xml
  
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值