mirror of
https://github.com/astaxie/beego.git
synced 2024-11-25 12:20:55 +00:00
add TemplateCache
This commit is contained in:
parent
8e90ddd577
commit
45710c3a3b
27
beego.go
27
beego.go
@ -4,6 +4,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"github.com/astaxie/session"
|
"github.com/astaxie/session"
|
||||||
_ "github.com/astaxie/session/providers/memory"
|
_ "github.com/astaxie/session/providers/memory"
|
||||||
|
"html/template"
|
||||||
"net/http"
|
"net/http"
|
||||||
"os"
|
"os"
|
||||||
"path"
|
"path"
|
||||||
@ -11,18 +12,19 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
BeeApp *App
|
BeeApp *App
|
||||||
AppName string
|
AppName string
|
||||||
AppPath string
|
AppPath string
|
||||||
StaticDir map[string]string
|
StaticDir map[string]string
|
||||||
HttpAddr string
|
TemplateCache map[string]*template.Template
|
||||||
HttpPort int
|
HttpAddr string
|
||||||
RecoverPanic bool
|
HttpPort int
|
||||||
AutoRender bool
|
RecoverPanic bool
|
||||||
PprofOn bool
|
AutoRender bool
|
||||||
ViewsPath string
|
PprofOn bool
|
||||||
RunMode string //"dev" or "prod"
|
ViewsPath string
|
||||||
AppConfig *Config
|
RunMode string //"dev" or "prod"
|
||||||
|
AppConfig *Config
|
||||||
//related to session
|
//related to session
|
||||||
SessionOn bool // wheather auto start session,default is false
|
SessionOn bool // wheather auto start session,default is false
|
||||||
SessionProvider string // default session provider memory
|
SessionProvider string // default session provider memory
|
||||||
@ -36,6 +38,7 @@ func init() {
|
|||||||
BeeApp = NewApp()
|
BeeApp = NewApp()
|
||||||
AppPath, _ = os.Getwd()
|
AppPath, _ = os.Getwd()
|
||||||
StaticDir = make(map[string]string)
|
StaticDir = make(map[string]string)
|
||||||
|
TemplateCache = make(map[string]*template.Template)
|
||||||
var err error
|
var err error
|
||||||
AppConfig, err = LoadConfig(path.Join(AppPath, "conf", "app.conf"))
|
AppConfig, err = LoadConfig(path.Join(AppPath, "conf", "app.conf"))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
Loading…
Reference in New Issue
Block a user