加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
WebMVC.dpr 3.50 KB
一键复制 编辑 原始数据 按行查看 历史
大量 提交于 2021-06-08 02:39 . 优化连接池
{*******************************************************}
{ }
{ 苏兴迎 }
{ E-Mail:pearroom@yeah.net }
{ }
{*******************************************************}
{
安装指南:https://my.oschina.net/delphimvc/blog/1581715
我的博客:https://my.oschina.net/delphimvc
相关视频:https://my.oschina.net/delphimvc/blog/4291418
开发手册:http://129.211.87.47/doc/help.html
讨论QQ群: 685072623
开发工具:delphi xe10.3
注意:win10系统以管理员权限运行
}
program WebMVC;
uses
qjson,
uDBConfig in 'src\Config\uDBConfig.pas',
uGlobal in 'src\Config\uGlobal.pas',
uInterceptor in 'src\Config\uInterceptor.pas',
uPlugin in 'src\Config\uPlugin.pas',
uTableMap in 'src\Config\uTableMap.pas',
Plugin.Tool in 'src\Plugin\Plugin.Tool.pas',
uRouteMap in 'src\Config\uRouteMap.pas',
myCommand in 'src\Common\myCommand.pas',
MVC.Command in 'src\MVC.Core\Common\MVC.Command.pas',
MVC.Config in 'src\MVC.Core\Common\MVC.Config.pas',
MVC.Pools.Base in 'src\Pools\MVC.Pools.Base.pas',
MVC.Pools.Custom in 'src\Pools\MVC.Pools.Custom.pas',
MVC.Pools.FireDAC in 'src\Pools\MVC.Pools.FireDAC.pas',
MVC.Pools.FireBird in 'src\Pools\MVC.Pools.FireBird.pas',
MVC.Pools.Query in 'src\Pools\MVC.Pools.Query.pas',
MVC.Rtti.Attribute in 'src\Rtti\MVC.Rtti.Attribute.pas',
MVC.Rtti.Helper in 'src\Rtti\MVC.Rtti.Helper.pas',
MVC.ORM in 'src\ORM\MVC.ORM.pas',
MVC.ORMConst in 'src\ORM\MVC.ORMConst.pas',
MVC.ORMFunction in 'src\ORM\MVC.ORMFunction.pas',
MVC.ORMParser in 'src\ORM\MVC.ORMParser.pas',
MVC.ORMParserClasses in 'src\ORM\MVC.ORMParserClasses.pas',
MVC.ORMTypes in 'src\ORM\MVC.ORMTypes.pas',
MVC.Plugin.Snowflake2 in 'src\Common\MVC.Plugin.Snowflake2.pas',
MVC.View in 'src\MVC.Core\Common\MVC.View.pas',
MVC.DBFirebird in 'src\MVC.Core\Common\MVC.DBFirebird.pas',
MVC.DB.Helper in 'src\Common\MVC.DB.Helper.pas',
MVC.Net.HttpClient in 'src\Common\MVC.Net.HttpClient.pas',
MVC.BaseController in 'src\MVC.Core\Common\MVC.BaseController.pas',
BO_Order_File_Job in 'src\Controller\Online\BO\BO_Order_File_Job.pas',
BO_Order_Web_Url in 'src\Controller\Online\BO\BO_Order_Web_Url.pas',
BO_WIP_to_WEB_Job in 'src\Controller\Online\BO\BO_WIP_to_WEB_Job.pas',
Controller.Index in 'src\Controller\Controller.Index.pas',
Controller.Custom in 'src\Controller\Controller.Custom.pas',
Controller.User in 'src\Controller\User\Controller.User.pas',
Controller.BOS in 'src\Controller\BOS\Controller.BOS.pas',
Controller.DB in 'src\Controller\DB\Controller.DB.pas',
Controller.Api in 'src\Controller\API\Controller.Api.pas',
Controller.Files in 'src\Controller\Files\Controller.Files.pas',
Controller.XData in 'src\Controller\XData\Controller.XData.pas',
MVC.Rtti.Caption.Helper in 'src\Rtti\MVC.Rtti.Caption.Helper.pas',
MVC.DBBase in 'src\MVC.Core\Common\MVC.DBBase.pas',
MVC.Route in 'src\MVC.Core\Common\MVC.Route.pas',
uConfigInit in 'src\Config\uConfigInit.pas',
MVC.PageCache in 'src\MVC.Core\Common\MVC.PageCache.pas',
VerySimple.Lua.Lib in 'src\Lua\Source\VerySimple.Lua.Lib.pas',
VerySimple.Lua in 'src\Lua\Source\VerySimple.Lua.pas',
Controller.Lua in 'src\Controller\Lua\Controller.Lua.pas',
Plugin.Lua in 'src\Controller\Lua\Plugin.Lua.pas';
{$R *.res}
begin
//Qjson字段名大小写不敏感
JsonCaseSensitive := False;
//配置文件解密秘钥
_Config.password_key := '';
//gui/cmd/service模式在mvc.inc里控制
_MVCFun.Run('');
end.
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化