SpringBoot跨域以及上传文件1M限制的问题踩坑

这篇博客讲述了在SpringBoot应用中遇到的跨域问题和上传文件1M限制的解决过程。作者在与前端联调时遇到413错误及超过1M文件上传的跨域问题。通过实现WebMvcConfigurerAdapter并调整配置,成功解决了这两个问题。
摘要由CSDN通过智能技术生成

问题背景描述
使用的阿里的OSS上传文件,本地自测通过,但是和前端联调的时候,出现了两个尴尬的问题:
1)一个是跨域问题,413报错
2)另一个是上传1M以内的文件完美上传,超过1M再次报错跨域问题

报错信息:

Access to XMLHttpRequest at 'http://192.168.21.100:9997/wahah/teacher/uploadPicture' from origin 'http://localhost:9000' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.

跨域解决措施
因为我使用的是Springboot框架,针对于跨域,Boot是有完整解决方案的:
让启动类继承WebMvcConfigurerAdapter类,并且重写addCorsMappings方法:

@SpringBootApplication
@EnableTransactionManagement
@EnableScheduling
@Slf4j
public class NewOfficialWebsiteApplication extends WebMvcConfigurerAdapter {

    public static void main(String[] args) {
        SpringApplication.run(NewOfficialWebsiteApplication.class, args);
    }

    @Overrid
在Spring Boot中解决跨域问题可以通过配置文件来实现。一种方式是使用Filter进行设置,另一种方式是通过在Spring Boot项目中配置Cors来实现。如果使用Filter方式,可以在需要跨域访问的类和方法中设置允许跨域访问,例如使用Spring中的@CrossOrigin注解。如果使用Cors配置方式,可以创建一个CorsConfig类,并实现WebMvcConfigurer接口,在addCorsMappings方法中添加跨域规则。具体的代码可以参考以下示例: @Configuration public class CorsConfig implements WebMvcConfigurer { @Override public void addCorsMappings(CorsRegistry registry) { registry.addMapping("/**") .allowedOrigins("*") .allowCredentials(true) .allowedMethods("*") .allowedHeaders("*") .maxAge(3600); } } 这样配置后,就可以解决Spring Boot项目中的跨域问题了。\[2\] #### 引用[.reference_title] - *1* [SpringBoot跨域配置](https://blog.csdn.net/weixin_45977186/article/details/123601258)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insert_down28v1,239^v3^insert_chatgpt"}} ] [.reference_item] - *2* *3* [Spring Boot进阶(38):SpringBoot跨域配置 | 超级详细,建议收藏](https://blog.csdn.net/weixin_43970743/article/details/130662337)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insert_down28v1,239^v3^insert_chatgpt"}} ] [.reference_item] [ .reference_list ]
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值