- 博客(18)
- 资源 (2)
- 收藏
- 关注
原创 WebServiceException: Attributes portName, serviceName and endpointInterface are not allowed in the @
异常问题解决:WebServiceException: Attributes portName, serviceName and endpointInterface are not allowed in the @WebService annotation of an SEI.
2022-10-18 08:57:48
1717
原创 Springboot+dubbo+zookeeper 启动出错 If you are using WebLogic you will need to add ‘org.slf4j‘ to prefer
Exception in thread "restartedMain" java.lang.reflect.InvocationTargetException at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMet.
2020-08-24 10:16:36
15490
5
原创 Springboot+swagger2 compatible version of org.springframework.plugin.core.PluginRegistry
在使用springboot配置Swagger2的时候报错2020-08-20 23:07:38.737 info 20748 --- [ restartedMain] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.Unsatis..
2020-08-20 23:15:01
3832
原创 1558 - Column count of mysql.proc is wrong. Expected 21, found 20. Created with MariaDB 50564, now
在使用MariaDB时,使用命令升级了MariaDB版本,在使用NavicatPremium导出数据库数据和结构的时候除了问题 1558 - Column count of mysql.proc is wrong. Expected 21, found 20. Created with MariaDB 50564, now running 100412. Please use mysql_...
2020-04-12 13:14:27
3465
3
原创 Springboot + vue ,使用axios获取不到响应头
在Vue项目中使用axios获取请求头信息只能获取到部分响应头信息如果想获取其他字段的话只需要在SpringBoot的cors请求配置中进行配置@Configurationpublic class CorsConfig implements WebMvcConfigurer { @Override public void addCorsMappings(CorsR...
2020-04-10 20:24:31
1617
转载 SpringBoot + Springboot-Security UserDetailsService中Service或者Dao 使用@Autowired注入为NULL
版权声明:本文为CSDN博主「滔涛江水」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。原文链接:https://blog.csdn.net/taotaojs/article/details/84955218网上有一些关于这个问题的答案,但都不是基于SpringBoot的,一想到SpringBoot还要配置XML文件就头大呀有木有。以下就是解...
2020-04-09 11:23:18
2089
2
原创 springboot + mybatis分页插件 pageHelper 不能正确的获取到 total等信息
<!-- 分页插件 --> <dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper-spring-boot-starter</artifactId> ...
2020-03-24 11:14:25
2591
原创 使用axios进行跨域请求,使用Springboot作为后台
使用vue+axios作为前端,springboot作为后台。解决使用axios进行跨域请求的问题:前台代码:后台配置:import org.springframework.context.annotation.Configuration;import org.springframework.web.servlet.config.annotation.CorsRegistry;...
2019-10-26 14:37:16
639
原创 Element-ui使用msgbox时,向msgbox组件中传值
在使用vue和element-ui做一个页面,在做数据回显的时候出现了一个问题。有些值需要传入到子组件中。具体办法就是在msgbox选项中添加一个属性。然后在子组件中使用this.$parent.data调用数据就行了<template> <div id="side"> <div id="menu"> <el-but...
2019-09-29 18:14:35
11976
原创 maven启动tomcat插件神坑, Failed to start component [StandardEngine[Tomcat].StandardHost[localhost].Standar
java.util.concurrent.ExecutionException: org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Tomcat].StandardHost[localhost].StandardContext[]] at java.util.concurrent....
2018-08-12 09:17:07
3341
原创 使用sqoop将mysql 数据导入hdfs时报错
信息18/06/29 10:45:08 ERROR sqoop.Sqoop: Got exception running Sqoop: java.lang.RuntimeException: java.lang.RuntimeException: java.sql.SQLException: The connection property 'zeroDateTimeBehavior' accept...
2018-06-29 11:18:32
2523
1
原创 MVC 设计模式
MVC设计模式:设计模式[Design pattern]是一套被反复使用,多数人知晓的,经过分类编目的,代码设计经验的总结.发展Model1: 单独使用JSP或JSP+JavaBean称为Model1Model2: 使用JSP和Servlet开发被称为Model2.详解MVC: Model-View-Controller--->模型---视图--控制器模型层: 实际就是业务类型.[业务模型,...
2018-06-15 08:49:25
222
原创 git 报错 fatal: Updating an unborn branch with changes added to the index.
在使用 git的时候 想把码云上的文件拉取到本地发现报错git pull --rebase origin masterfatal: Updating an unborn branch with changes added to the index. 后来发现原来是 提交到版本库中的文件没有没有提交到 分支中,还在暂存区所以执行 git commit -m 'xx' 就行了...
2018-06-13 08:50:53
39880
8
原创 Servlet Filter 过滤器的详细解析
Filter简介Filter 技术是 servlet 2.3 新增的功能。 Filter主要是为了拦截用户的请求和服务器的响应,从而实现了一些特殊的功能。Filter工作原理Filter直接拦截用户的请求和服务器的响应(自身不产生请求额响应),然后经过Filter程序的判断和操作,做出最后的处理。Filter程序的编写Servlet API 中定义了三个接口类来供开发人员编写 Filter 程序 ...
2018-06-11 20:23:56
528
原创 java jdbc连接数据库
创建jdbc的步骤:第1步: 加载驱动器Class.forName("com.mysql.jdbc.Driver")加载 mysql 驱动第2步: 登陆数据库DriverManager.getConnection(url,user,password)使用DriverManager获取数据库连接 url 为数据库的url地址 user 为你登录数据库的用户名 password为登录密码第3步: 创建...
2018-06-04 19:58:51
161
原创 hadoop mapreduce入门实例wordcount
mappackage com.gufy.MR;import java.io.IOException;import java.util.StringTokenizer;import org.apache.hadoop.io.IntWritable;import org.apache.hadoop.io.LongWritable;import org.apache.hadoop.io.T...
2018-06-03 15:10:47
322
原创 hadoop 常用的命令
hadoop的启动与停止不推荐使用了 但是还可以用start-all.shstop-all.sh最新的启动命令start-dfs.shstop-dfs.shhadoop的DFS文件系统的常用命令创建文件夹hadoop fs -mkdir /park 查看文件夹hadoop fs -ls /迭代查看文件夹的所有文件hadoop fs -lsr /将本地文件上传到 hadoop 文件系统上hadoo...
2018-06-02 22:05:27
287
原创 linux下的hadoop 2.7.1配置 单机伪分布
hostname查看主机名称配置免密登录在/etc/hosts文件中添加自己的ip映射 查看自己的ip是 ifconfig如 192.168.1.1 hadoop 前面是自己的主机的ip地址 后面是 主机名称查看配置是否正确 ssh [主机名] ssh 192.168.1.1 或者 ssh hadoop然后设置免密登录操作ssh-keygen 生成公私钥文件将公钥文件发送到远程主机或本机ssh-c...
2018-06-02 21:30:06
682
jdbc驱动包 jstl包
2018-06-06
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人