eclipse maven打包
1.eclipse 打包 jar
maven install 前,最好 maven clean,然后 Maven install.
2.运行 jar:
1>java -jar algz_war-0.0.1.jar
3.启动参数
(.jar 文件会“优先搜录”同级目录下 application.properties 文件,有则执行,忽略jar里的文件;没有则执行.jar目录里的文件。 )
示例:
1>java -jar algz_war-0.0.1.jar --spring.config.location=D:\myapplication.properties --server.port=8000 --server.address=127.0.0.1
spring.config.location : 指定配置文件路径,不写使用默认加载路径的application.properties。
server.port : 端口号. eg: --server.port=9999。
server.address:IP地址。 eg: --server.address=127.0 ...
(二)安装Hexo博客插件
(一)安装Hexo博客部署到GitHub或云服务器(二)安装Hexo博客插件(三)配置Hexo博客功能(四)配置Hexo编辑工具obsidian
四、安装 Hexo 插件
1.butterfly 主题插件(推荐)
https://butterfly.js.org/
安装主题
(使用 https://ghproxy.com/ 代理访问)
1234# 稳定版(推荐) git clone -b master https://ghproxy.com/https://github.com/jerryc127/hexo-theme-butterfly.git themes/butterfly# 测试版git clone -b dev https://ghproxy.com/https://github.com/jerryc127/hexo-theme-butterfly.git themes/butterfly// 主题目录:D:\blog\myblog\themes\butterfly
安装主题相关插件
12>npm install hexo-renderer-pug hexo-ren ...
(一)安装Hexo博客部署到GitHub或云服务器
(一)安装Hexo博客部署到GitHub或云服务器(二)安装Hexo博客插件(三)配置Hexo博客功能(四)配置Hexo编辑工具obsidian
一、本地安装
1. 安装Git、Node.js、npm(略)
2. 安装hexo
1>npm install -g hexo-cli hexo-server
npm install -g:npm包管理工具进行全局安装。
hexo-cli:为hexo的客户端模块。
hexo-server:服务器模块。可以支持在本地服务器生成网页并进行调试。
3.本地初始化博客文件夹
123>hexo init hexo // 创建 hexo 文件夹(自定义),拉取hexo项目。>cd hexo // 进入 hexo 文件夹>npm install hexo-deployer-git --save // 安装自动部署至远程git仓库的插件
4.配置Hexo的部署插件(_config.yml)
在本地计算机的hexo文件夹,打开 D:\bolg\hexo\ _config.yml ...
hexo-renderer-markdown-it-plus demo
reason
hexo-renderer-markdown-it-plus
demo
reason
I use hexo-theme-next for my blog, and I met a problem same with #826.
I wrote a plugin hexo-renderer-markdown-it-plus for fix it,and this article is a demo for hexo-renderer-markdown-it-plus
The hexo default hexo-renderer-marked do not support LaTex parser, you must referer external link to parse Latex grammar to html(That’s whathexo-theme-next did, hexo-theme-next use mathjax), and the mathjax and hexo-renderer-marked will cause some probl ...