上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 50 下一页
摘要: 出现这个的原因,我这边的是Nginx的问题,因为没有匹配到静态文件的原因 第一个location是始终将访问的url请求定向到 index.html这个主页面 第二个location块是将index.html使用的js,css,font页面定向到包含的目录 切记:vue项目的vue-cli配置的属性 阅读全文
posted @ 2021-02-22 22:18 星小梦 阅读(7881) 评论(0) 推荐(1)
摘要: 升级方式:http://www.vpser.net/manage/centos-6-upgrade-gcc.html 相关工具:https://www.softwarecollections.org/en/scls/rhscl/devtoolset-8/ 阅读全文
posted @ 2021-02-17 08:47 星小梦 阅读(55) 评论(0) 推荐(0)
摘要: ERROR: Command errored out with exit status 1: command: /usr/local/dmahz/p_book_data/bin/python3.9 -c 'import sys, setuptools, tokenize; sys.argv[0] = 阅读全文
posted @ 2021-02-15 21:27 星小梦 阅读(3338) 评论(4) 推荐(0)
摘要: 使用@Query注解的时候,常常需要写sql来映射非域类的实例,通常的做法就是 实现 RowMapper接口,然后new实例一个一个的设置值进去。。。为此。出世了自动映射工具类 注意事项:此抽象类只是结果集 一条记录到行 的映射,添加了额外的方法;比如就是把一个字段的值拆分成Map或List,然后会 阅读全文
posted @ 2021-02-12 22:15 星小梦 阅读(673) 评论(0) 推荐(0)
摘要: 使用方式:https://blog.csdn.net/weixin_42385951/article/details/85322150 字体处理官方网站:https://fonttools.readthedocs.io/en/latest/ttLib/ttFont.html 阅读全文
posted @ 2021-02-03 18:09 星小梦 阅读(137) 评论(0) 推荐(0)
摘要: 当 EnableJdbcRepositories 注解无法注册Repository仓库的时候,你可以查看下 你的实体是否存在@Table注解,没有请加上,这样就能扫描到了 @Table("b_authority")@Getter@Setter@ToString(callSuper = true)@B 阅读全文
posted @ 2021-01-30 21:58 星小梦 阅读(337) 评论(0) 推荐(0)
摘要: 遇到了一个问题,使用requests进行转发 requests响应流的时候,出现各种问题,问题的描述没有记录,不过Debug以下终于解决了问题。。。。。。。下面简单的描述解决方案 response = _RequestUtil.post_request_server("upload", data={ 阅读全文
posted @ 2021-01-30 00:10 星小梦 阅读(79) 评论(0) 推荐(0)
摘要: 第一种:将相互依赖的文件中的其中一个文件的代码移植到另一个文件中。。。 第二种:将 import .... 或 from ... import 语句的位置移动到def函数内部,由于import和from....import只会实际一次,重复操作只是返回引用;官方的话:”模块可以包含可执行的语句以及函 阅读全文
posted @ 2021-01-26 20:10 星小梦 阅读(1095) 评论(0) 推荐(0)
摘要: def func(): print("func body") def f1(arg): print("f1:",arg) def wrapper(b): print("f1 wrapper:",b) return b return wrapper def f2(f): print("f2:",f) 阅读全文
posted @ 2021-01-25 12:18 星小梦 阅读(195) 评论(0) 推荐(0)
摘要: void test_save_1(@Param("relatedBookCategoryEntity") RelatedBookCategoryEntity relatedBookCategoryEntity11, BookEntity bookEntity11, String categoryNa 阅读全文
posted @ 2021-01-23 19:37 星小梦 阅读(670) 评论(0) 推荐(0)
上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 50 下一页