springboot+vue健康管理小项目(一)后台环境搭建

本项目根据https://www.bilibili.com/video/BV1q5411s7wH 完成
仅供自己学习参考
欢迎交流学习

一、后台环境搭建

  1. 创建springboot项目
    使用IDEA快速搭建springboot项目
    所需框架 springweb、jdbc api、mybatis、mysql driver
    在这里插入图片描述
    在这里插入图片描述
  2. 编辑配置文件application.yml
# mysql
spring:
  datasource:
    #MySQL配置
    driverClassName:  com.mysql.cj.jdbc.Driver
    url: jdbc:mysql://localhost:3306/easyproject?useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=UTC
    username: root
    password: root

mybatis:
  mapper-locations: classpath:mapper/*.xml
  type-aliases-package: com.example.demo.model
server:
  port: 9000

二、编写跨域配置类,解决跨域问题

package com.zjj.util;

import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.CorsRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;

/**
 * 全局配置类,配置跨域请求
 */
@Configuration
public class WebConfig extends WebMvcConfigurerAdapter {
    @Override
    public void addCorsMappings(CorsRegistry registry) {
        /**
         * 1.域访问的路径
         * 2.请求来源
         * 3.方法
         * 4.允许携带token等
         * 5.响应最大时间
         */
        registry.addMapping("/**")
                .allowedOrigins("Http://locahost:8080","null")
                .allowedMethods("GET","POST","PUT","OPTIONS","DELETE")
                .allowCredentials(true)
                .maxAge(3600);

    }
}
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值