手机号码,快捷登录
签到天数: 804 天
[LV.10]以坛为家III
2053
2111
72万
管理员
Access to XMLHttpRequest at ‘http://localhost:8080/vue/findall from origin ‘http://localhost:8000’ has been blocked by CORS policy: No ‘Access-Control-Allow-Origin’ header is present on the requested resource.
pom.xml文件中加入依赖:
pom.xml
<dependency> <groupId>com.thetransactioncompany</groupId> <artifactId>cors-filter</artifactId> <version>2.5</version> </dependency>
web.xml文件中加入:
web.xml
<!--跨域--> <!--加入跨域过滤器配置--> <filter> <filter-name>CORS</filter-name> <filter-class>com.thetransactioncompany.cors.CORSFilter</filter-class> </filter> <filter-mapping> <filter-name>CORS</filter-name> <url-pattern>/*</url-pattern> </filter-mapping>
打包前进行以下配置
build文件夹中的utils.js,指定位置添加publicPath: '../../'
utils.js
publicPath: '../../'
config文件夹下的index.js,指定位置添加修改为assetsPublicPath: './',
index.js
assetsPublicPath: './',
之后执行
npm run build
打包后将dist下的index.html ,css , js等文件添加到webapp下即可通过访问index.html访问
使用道具 举报
本版积分规则 发表回复 回帖后跳转到最后一页
|手机版|小黑屋|Java自学者论坛 ( 声明:本站文章及资料整理自互联网,用于Java自学者交流学习使用,对资料版权不负任何法律责任,若有侵权请及时联系客服屏蔽删除 )
GMT+8, 2024-12-22 13:31 , Processed in 0.059953 second(s), 30 queries .
Powered by Discuz! X3.4
Copyright © 2001-2021, Tencent Cloud.