- 博客(16)
- 收藏
- 关注
原创 已有TensorFlow安装包新建相应python版本的虚拟环境
新建的虚拟环境默认在Anaconda安装目录D:\Anaconda3\envs(根据自己的安装目录看)
2024-03-20 12:37:00 169
原创 解决重装系统之后,开始菜单找不到Anaconda3相关图标
在安装位置按住shift键+鼠标右键,打开poworshell,输入。一、anaconda3安装后在开始菜单找不到,如下图所示。二、进入Anaconda3安装的位置。
2024-03-19 22:28:10 862 2
原创 ffmpeg常用命令
1、查看音视频文件详细格式ffmprobe (目标文件)in.mp42、提取视频文件中的视频(消除音频)ffmpeg -i in.mp4 -an -vcodec copy out.mp43、提取视频中的音频ffmpeg -i in.mp4 -vn -acodec copy out.m4a4、如果视频中有多个音频流,例如:ffmpeg -i in.mp4 -vn -map 0...
2019-07-03 14:41:08 955 1
原创 springboot国际化
国际化基本配置1、spring.messages.basename=i18n/login2、3、国际化配置文件(根据链接上的区域信息)public class myLoginLocaleResolver implements LocaleResolver { @Override public Locale resolveLocale(HttpServletReques...
2019-06-16 17:11:00 232
原创 springboot2.0MVC配置过时替换
springboot1.X MVC配置过时,这个不适合2.x使用@Configurationpublic class mvc_t extends WebMvcConfigurerAdapter {}最好使用@Configurationpublic class MyMvcConfig implements WebMvcConfigurer { @Override pu...
2019-06-16 15:19:52 390
原创 js与thymeleaf结合,js获取thymeleaf变量
前段页面代码<tr th:each="book : ${books}"> <td th:text="${book.author}"></td> <td th:text="${book.title}"></td> <td th:text="${book.url}...
2019-06-02 01:04:26 15734
原创 js获取后台model变量的内容
@RequestMapping("/refresh")public class IndexController { @RequestMapping public String globalRefresh(Model model) { Integer h=2; model.addAttribute("uu",h); return "...
2019-06-02 00:15:57 3496 3
原创 thymeleaf + Spring Boot 在开发环境正常,但用jar运行时报错 Error resolving template template might not exist or migh
这个问题我们都很好明白,就是模板页不存在,但是实际上它能找到模板页,但是在使用th:include,th:replace等标签的时候才会出错,这就是问题的症结所在。其实这个问题也很好解决,我们只需要在引用模板文件的时候不用”/”打头就可以了,通过类似相对路径的方式来引用,但是需要说明的是,这里的相对路径仍然是相对于模板根目录来做的。@RequestMapping("/view")public...
2019-05-02 15:34:35 2241
原创 Linux运行jar包与停止
1、执行jar包的命令和在windows操作系统上是一样的,都是java -jar xxxx.jar。2、后台运行,nohup 意思是不挂断运行命令,当账户退出或终端关闭时,程序仍然运行当用 nohup 命令执行作业时,缺省情况下该作业的所有输出被重定向到nohup.out的文件中,除非另外指定了输出文件。nohup java -jar shareniu.jar &3、如果想杀掉...
2019-04-29 23:26:42 7371 3
原创 springboot+editor实现图片上传
其中private static final String UPLOADED_FOLDER = "/usr/img/blog/";Controller层方法 @RequestMapping(value="/uploadfile",method=RequestMethod.POST) public void hello(HttpServletRequest request,HttpSe...
2019-04-29 15:04:52 521 2
原创 Ubuntu安装docker与mysql
Ubuntu安装dockersudo apt-get updatesudo apt-get install -y docker.iosystemctl start docker(启动)systemctl enable docker(开机自动启动)docker pull mysql(下载Mysql镜像)service firewalld status(查看防火墙,确认关闭)servic...
2019-04-28 20:10:09 499
原创 阿里云轻量服务器配置tomcat的坑
一切都配置好了,通过访问localhost:8080是可以访问到tomcat的服务器的,但是通过服务器公网ip就一直没反应。但是我又试了nginx服务器是可以的,安装好nginx服务器,直接浏览器输入公网ip(你买的服务器ip),就来到了nginx首页,可以证明阿里云服务器是没问题的。这是想起了端口,nginx默认是80端口,而阿里云轻量服务器刚好默认防火墙配置好了80端口。tomcat默...
2019-04-27 23:43:01 962
原创 CSS的style="background-image
style="background-image: url(/statics/images/47fb3c_.jpg);"其中url里边的路径需要以“/”开头,不然静态资源在某些情况下无法访问。
2019-04-20 14:19:30 4201 1
原创 th:href,th:src等标签使用小坑
<link rel="stylesheet" type="text/css" href="statics/css/index.css" th:href="@{/statics/css/index.css}" media="all" />其中的@{}里边必须要以“/”开头,才能正确根据项目路径找到相应的静态资源。...
2019-04-20 13:04:49 32848 3
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人