logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

ApplicationContextException: Unable to start ServletWebServerApplication (springboot)

springboot 中,启动报错:如标题。因为没有容器的缘故。springboot有两种tomcat发布的方式;内置tomcat,在pom.xml中配置spring-data-stater-tomcat的依赖就可以了外置tomcat,这个需要按照tomcat的外置方式来配置。选择相应的启动方式就可以了...

vuex__WEBPACK_IMPORTED_MODULE_1__.default.store is not a constructor

vue中使用vuex创建store,跳出此问题。我网上搜了一下,没有人记录这个问题。我还是记录一下吧。在store文件夹下的index.js 中创建store时候:const store = new Vuex.store({})把store改成大写即可。const store = new Vuex.Store({})真是一个垃圾的问题,不仔细...

axios + vue 不能携带set-cookie

在vue中使用axios的时候,并没有默认设置set-cookie 。需要设置 widthCredentials: true设置方式分为两种:全局设置:在axios创建的时候设置const axios = Axios.create({baseURL: "http://192.168.0.102/gainfo/",widthCredentials: true,})局部设置:在get,post 等等发

#vue.js#javascript#前端
Invalid bound statement (not found): 某个Mapper下的方法找不到

在使用Maven多模块时,集成Mybatis。出现了如上述问题.本质原因是 配置的Mapper并没有加载进去。解决方式:mybatis:mapper-locations: classpath:mapper/*.xml 在application.yml中添加上述配置完成即可。这是大多数的问题所在。当我如上述配置时并没有解决问题。在此处有两个其他人的问题,我试了一下在我项目中并不存在....

java.security.spec.InvalidKeySpecException: java.security.InvalidKeyException: IOException : DerInpu

在springboot 中使用 rsa-encrypt-body-spring-boot 碰到此错误错误如下:rsa:encrypt:open: true # 是否开启加密 trueorfalseshowLog: true # 是否打印加解密log trueorfalsepublicKey: -----BEGIN PUBLIC KEY-----MIGfMA0GCSqGSIb3DQEBAQUAA4G

#spring#spring boot#java
到底了