`
文章列表
    错误原因:       Spring官方文档后发现新版中用SpringBootTest代替了SpringApplicationConfiguration,所以将注解改为以下形式就可以正常注入Bean了     修改后               参考:    http://blog.csdn.net/u013360850/article/details/71075565
  错误:       错误原因:springboot 配置文件的格式和内容格式无法匹配(如下图所示 )      解决方案:     把配置文件application.properties 改为 application.yml 即可     
 错误: java.lang.NoSuchMethodError: org.springframework.web.servlet.mvc.method.annotation.ServletInvocable(详情如下)   错误原因:       打开maven的pom.xml 文件 ,发现下面标红的两个jar冲突了,导致maven的jar加载的时候,只会加载上面    的jar,所以下面的jar会加载不到,导致视图解析报错,导致浏览器报错500       <?xml version="1.0" encoding="UTF-8"? ...
错误: Unregistering JMX-exposed beans on shutdown                                                                                     原因:maven 运行的时候需要这个包,如果maven左边添加<scope>provided</scope> 则不会打包编译   解决办法:将<scope>provided</scope>注释掉即可     参考:   http://drizzlewalk.blog.5 ...
   问题:dubbo使用zookeeper注册失败  com.alibaba.dubbo.rpc.RpcException:  Forbid consumer 192.168.73.63 access service com.runyi.share.service.commodity.api.ICategoryService  from registry 127.0.0.1:2181 use dubbo version 2.5.3,     分析:当前调用者被禁止访问某个服务,请检查下注册中心访问列表,还有黑名单和白名单。     其实线下环境根本没有对服务做白名单和黑名 ...
     1.使用maven 创建springboot工程     2.修改 pom,xml ',添加 swagger2 依赖      <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <version>2.2.2</version> </dependency> <dependency> <grou ...
1.创建maven 工程,修改pom.xml     <build> <plugins> <!-- mybatis逆向工程 --> <plugin> <groupId>org.mybatis.generator</groupId> <artifactId>mybatis-generator-maven-plugin</artifactId> ...
    1.注册码云账号     2.登录码云账号     3.创建项目       4.创建完成项目后,跳转代码提交提示页(如下图),按照自己的需求操作即可!   
  错误现象:  错误原因:mysql5.7中only_full_group_by这个模式是默认开启的      项目中本来使用的是mysql5.6进行开发,切换到5.7之后,突然发现原来的一些sql运行都报错,错误编码1055,错误信息和sql_mode中的“only_ful ...
1,什么是线程安全 (参考书:https://book.douban.com/subject/10484692/)    如果你的代码所在的进程中有多个线程在同时运行,而这些线程可能会同时运行这段代码。如果每次运行结果和单线程运行的结果是一样的,而且其他的变量的值也和预期的是一样的,就是线程安全的。   2,都说String是不可变的,为什么我可以这样做呢    String a = "1";    a = "2";    答: String  a 表示定义一个字符串对象a ,“1” 是一个字符串常量是不可以变的,“2”也是一个字符串常量是不 ...
使用 GROUP_CONCAT(列字段1,列字段2,.....)     测试结果如下:        
错误( 如图1 所示 ):        原因( 如图2 所示 ):   如图3    配置文件名称和client的配置文件名称必须保持一致(配置文件名如下)       http请求地址和资源文件映射如下: <!--[if !supportLists]-->· <!--[endif]-->/{    application}/{profile}[/{label}] <!--[if !supportLists]-->· <!--[endif]-->/{    application}-{profile}.yml < ...
在github上创建仓库:Create a new repository on the command linetouch README.mdgit initgit add README.mdgit commit -m "first commit"git remote add origin https://github.com/BrentHuang/MyRepo.gitgit push -u origin master在本地新建一个分支: git branch Branch1切换到你的新分支: git checkout Branch1将新分支发布在github上: git ...
设置response返回编码 response.setCharacterEncoding("UTF-8"); response.setHeader("Content-type", "text/html;charset=UTF-8");  
错误: com.netflix.hystrix.exception.HystrixRuntimeException: service-feign timed-out and no fallback available.   原因: Hystrix缺省超时判断为1秒钟,由于网络问题,有些请求超过1秒钟之后才接收到。 解决: 配置修改请求超时时长(application.yml):   hystrix: command: default: execution: isolation: thre ...
Global site tag (gtag.js) - Google Analytics