go 删除 文件 某行_Go实战--用echo嵌入静态资源

生命不止,继续 go go go !!!

使用 Go 开发应用的时候,有时会遇到需要读取静态资源的情况。比如开发 Web 应用,程序需要加载模板文件生成输出的 HTML。在程序部署的时候,除了发布应用可执行文件外,还需要发布依赖的静态资源文件。这给发布过程添加了一些麻烦。既然发布单独一个可执行文件是非常简单的操作,就有人会想办法把静态资源文件打包进 Go 的程序文件中。

参考地址:
http://fuxiaohei.me/2016/10/1/go-binary-embed-asset.html

文中提到了:
go-bindata
go.rice
esc

本片博客只会介绍go.rice,其余的会之后进行介绍的。

What’s an Embedded Resource?
An embedded resource in a application is a file that is included as part of the application. The file is not compiled, but is accessable from the code at run-time. Embedded resources can be any file type.

Languages as JAVA and C# support resources out of box. However, this is not the case for Golang. In order to emebed resource, we need to develop our own solution. Thankfully, there are couple of tools that are doing this for us.

参考地址:
http://blog.ralch.com/tutorial/golang-embedded-resources/

go.rice

go.rice is a Go package that makes working with resources such as html,js,css,images,templates, etc very easy.

github地址:
https://github.com/GeertJohan/go.rice

Star: 1107

获取:

go get github.com/GeertJohan/go.ricego get github.com/GeertJohan/go.rice/rice12

FindBox
funcation to access a particular resource bundler (directory).
The function is finding the correct absolute path for your resource files.

// find a rice.BoxtemplateBox, err := rice.FindBox("your-resource-directory")if err != nil {    log.Fatal(err)}// get file contents as stringtmpl, err := templateBox.String("your_asset.tmpl")if err != nil {    log.Fatal(err)}12345678910

Embedded resource as source code
作为源码嵌入资源
命令:

rice embed-go1

生成文件:

.rice-box.go1

Embedded resource as an archive
appends a resource as a zip file to already built executable
以zip的形式附加到已经存在的可执行文件

Embedded resource as an syso resource
This is experimental method that generates .syso file that is compiled by Go compiler. The following command generates the coff syso resource files per directory:

rice embed-syso1
go build -o rice append --exec 12

echo中使用go.rice

代码main.go:

package mainimport (    "net/http"    "github.com/GeertJohan/go.rice"    "github.com/labstack/echo")func main() {    e := echo.New()    // the file server for rice. "app" is the folder where the files come from.    assetHandler := http.FileServer(rice.MustFindBox("app").HTTPBox())    // serves the index.html from rice    e.GET("/", echo.WrapHandler(assetHandler))    // servers other static files    e.GET("/static/*", echo.WrapHandler(http.StripPrefix("/static/", assetHandler)))    e.Logger.Fatal(e.Start(":1323"))}12345678910111213141516171819202122

跟main.go同一级,新建一个文件夹app,放入文件file.txt

执行:

rice embed-go1

生成了 rice-box.go:

package mainimport (    "github.com/GeertJohan/go.rice/embedded"    "time")func init() {    // define files    file2 := &embedded.EmbeddedFile{        Filename:    "file.txt",        FileModTime: time.Unix(1511406219, 0),        Content:     string(""),    }    // define dirs    dir1 := &embedded.EmbeddedDir{        Filename:   "",        DirModTime: time.Unix(1511406219, 0),        ChildFiles: []*embedded.EmbeddedFile{            file2, // "file.txt"        },    }    // link ChildDirs    dir1.ChildDirs = []*embedded.EmbeddedDir{}    // register embeddedBox    embedded.RegisterEmbeddedBox(`app`, &embedded.EmbeddedBox{        Name: `app`,        Time: time.Unix(1511406219, 0),        Dirs: map[string]*embedded.EmbeddedDir{            "": dir1,        },        Files: map[string]*embedded.EmbeddedFile{            "file.txt": file2,        },    })}123456789101112131415161718192021222324252627282930313233343536373839404142

执行:

go build1

生成文件:embed_resources.exe

运行embed_resources.exe
删除app文件夹下的file.txt
浏览器访问http://localhost:1323/
可以看到file.txt文件

6362dc29ac2f52aa26f8b72102f82cad.gif

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/429435.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

python 运维自动化之路 Day2

学习内容: 1、模块初识 2、Pyc是什么 3、Python数据类型 4、数据运算 5、bytes数据类型 6、列表和元组的使用 7、字符串常用操作 8、字典的使用 1、模块初识 如果用 python 解释器来编程,从 Python 解释器退出再进入,那么你定义的所有的方法和…

mysql多源复制 知乎_MySQL多主一从(多源复制)同步配置

>多主一从,也称为多源复制,数据流向。这是小编的服务器部署的一次小尝试,实际工作中还没遇到过形式主库1 -> 从库s主库2 -> 从库s主库n -> 从库s应用场景数据汇总,可将多个主数据库同步汇总到一个从数据库…

关于算法模板和规范的说明

这里记录的算法模板和规范仅供个人使用,可能会存在BUG。由于使用本博客模板导致的BUG及其负面影响,本人概不负责。转载于:https://www.cnblogs.com/hzs2000/p/6682699.html

aMDcpu不支持mysql_Oracle 11.2.0.1在AMD CPU 64位硬件,32位操作系统下的BUG 8670579

通过查询meatlink原因是在ORACLE11.2.0.1 AMD 64位CPU下安装了32位的操作系统,触发了bug 8670579,那要解决该问题只需打上86705bug 8670579硬件信息:CPU:AMD X6在执行dbca的时候也报错如下:[Oracleyorkshi ~]$ dbca## An unexpect…

《网络攻防》第6周作业

20169310 2016-2017-2 《网络攻防实践》第6周学习总结 教材学习内容总结 本周主要学习了《网络攻防---技术与实践》第5、6章的内容,主要学习了 TCP/IP网络协议攻击 和 网络安全防范技术 TCP/IP网络协议攻击概述 网络安全的属性:机密性 、完整性 、可用性…

python读ad域日志_Python实现AD域认证

Python 通过ldap进行ad域账号的校验。首先需要安装python-ldap的模块 http://www.python-ldap.org/。 在这里用的是windows系统,当然比较容易,下载地址 http://pypi.python.org/pypi/python-ldap/。安装后在python 的交互环境里输入import ldap 如果没有…

nios ii小实验——第一个demo指导书

1.新建工程:打开Quartus II 13.0,点击File->New Project Wizard,点击Next后可以看到如图2所示的对话框,选择工程路径给工程命名(注意:工程名必须和顶层模块名一致,否则编译会报错&#xff09…

js动态时间(转)

html代码 <span id"timeShow" show_cur_times()></span>js代码 $(function(){//设置1秒调用一次show_cur_times函数setInterval("show_cur_times()",100); });function show_cur_times(){ //获取当前日期var date_time new Date();//定义星期…

shell设计精髓_交互设计精髓

了解数字产品的设计过程工业设计师 Victor Papanek 认为&#xff0c;设计是“为赋予有意义的秩序&#xff0c;作出有意识或直觉的努力”。“All men are designers. All that we do, almost all the time is design, for design is basic to all human activity. The planning …

谈谈我对Javascript中This对象的理解

this 指针的隐式赋值 this总是指向调用该方法的对象&#xff1b; 在事件中&#xff0c;this指向触发这个事件的对象&#xff0c;特殊的是&#xff0c;IE中的attachEvent中的this总是指向全局对象Window&#xff1b; 显示操纵 this 指针 Javascript引擎通过以下两种方式允许我们…

mysql获取下一条自增的id_mysql获取一个表中的下一个自增(id)值的方法

mysql获取一个表中的下一个自增(id)值的方法MySQL: Get next AUTO_INCREMENT value from/for tableNote to self: To get the next auto_increment value from a table run this query: SELECT AUTO_INCREMENT FROM information_schema.TABLES WHERE TABLE_SCHEMA $dbName AND…

WebStorm 快捷键整理

我用的是WebStorm11 2016的版本&#xff0c;个人感觉非常不错&#xff0c;现在整理下快捷键。  Ctrl/ 或 CtrlShift/注释&#xff08;// 或者/*…*/ &#xff09;ShiftF6重构-重命名CtrlX剪切行CtrlD复制并粘贴行CtrlG查找行CtrlShiftUp/Down代码快向上/下移动。F2 或ShiftF2高…

mysql云数据库 磁盘利用率_云数据库MySQL参数的那些事儿

MySQL数据库参数是数据库系统运行的关键配置信息&#xff0c;设置不合适的参数值可能会影响业务。本文列举了一些重要参数说明&#xff0c;更多参数详细说明&#xff0c;请参见MySQL官网。修改敏感参数若干参数相关说明如下&#xff1a;“lower_case_table_names;”:云数据库默…

Swift3 Scanner用法之判断是否数字、提取字符串里的数字

1、判断是否数字 /// 判断是否是数字////// - Parameter string: <#string description#>/// - Returns: <#return value description#>class func isPurnInt(string: String) -> Bool {let scan: Scanner Scanner(string: string)var val:Int 0return scan.s…

mysql客户端查询_MySQL数据库之利用mysql客户端查询UCSC数据库

本文主要向大家介绍了MySQL数据库之利用mysql客户端查询UCSC数据库 &#xff0c;通过具体的内容向大家展现&#xff0c;希望对大家学习MySQL数据库有所帮助。UCSC Genome Browser是由University of California Santa Cruz (UCSC) 创立和维护的&#xff0c;该站点包含有人类、小…

算法交易系列研究之一

一、算法交易的概念 &#xff08;一&#xff09;什么是算法交易 算法交易&#xff08;Algorithmic Trading&#xff09;是一种程序化交易方式&#xff0c;它将交易者和市场有机地联系起来。算法交易通常可以减少这两者之间的摩擦&#xff0c;或者说在一定程度上可以降低交易对市…

mysql支持的时区列表_mysql按天分组支持时区

时区问题总是个比较麻烦的问题&#xff0c;客户端与服务器的时区不一致自然是理所当然的事情&#xff0c;而对于多台服务器或者分布式再或者炙手可热的云&#xff0c;时区不统一也很正常&#xff0c;而且也不需要统一&#xff0c;还好有个时间戳的概念&#xff0c;通过时间戳就…

IOS多线程之Block编程

1 什么是block iOS SDK 4.0開始&#xff0c;Apple引入了block这一特性。字面上说&#xff0c;block就是一个代码块。可是它的奇妙之处在于在内联(inline)运行的时候(这和C非常像)还能够传递參数。同一时候block本身也能够被作为參数在方法和函数间传递。这就给予了block无限的可…

python查找两个数组中相同的元素_匹配两个numpy数组以找到相同的元素

使用熊猫&#xff1a;import pandas as pdid1 pd.read_csv(id1.txt)id2 pd.read_csv(id2.txt)df id1.merge(id2.sort_values(byID2).drop_duplicates(ID2).rename(columns{ID2:ID1}))print(df)产生&#xff1a;^{pr2}$对于大型数据集&#xff0c;您可能需要执行以下操作&…

Spring3系列7- 自动扫描组件或Bean

原文地址 &#xfeff;&#xfeff;http://www.cnblogs.com/leiOOlei/p/3547589.html 一、 Spring Auto Scanning Components —— 自动扫描组件     1. Declares Components Manually——手动配置component 2. Auto Components Scanning——自动扫描组件 3…