zoukankan      html  css  js  c++  java
  • EAS使用中FineUI的配置

    <?xml version="1.0" encoding="utf-8"?>
    <configuration>
      <configSections>
        <section name="eas" type="EAS.ConfigHandler,EAS.MicroKernel" />
        <section name="FineUI" type="FineUI.ConfigSection, FineUI" requirePermission="false" />
      </configSections>
      <eas>
        <configurations>
          <item name="Key" value="Value" />
        </configurations>
        <objects>
          <object name="DbProvider" assembly="EAS.Data.Provider" type="EAS.Data.Access.OracleProvider" LifestyleType="Thread">
            <property name="ConnectionString" type="string" value="Data Source=M;User Id=m;Password=sa;Integrated Security=No" />
          </object>
          <!--数据访问器-->
          <object name="DataAccessor" assembly="EAS.Data" type="EAS.Data.Access.DataAccessor" LifestyleType="Thread">
            <property name="DbProvider" type="object" value="DbProvider"/>
            <property name="Language" type="object" value="PLSqlLanguage"/>
          </object>
          <!--ORM访问器-->
          <object name="OrmAccessor" assembly="EAS.Data" type="EAS.Data.ORM.OrmAccessor" LifestyleType="Thread">
            <property name="DataAccessor" type="object" value="DataAccessor"/>
            <!--<property name="DataNotifier" type="object" value="DataNotifier"/>-->
          </object>
          <!--数据通知程序-->
          <!--<object name="DataNotifier" assembly="EAS.Data" type="EAS.Data.ORM.SocketBusDataNotifier" LifestyleType="Singleton">
            <property name="MessageBus" type="object" value="MessageBus"/>
          </object>-->
          <!--消息总线-->
          <!--<object name="MessageBus" assembly="EAS.MicroKernel" type="EAS.Sockets.Bus.SocketBus" LifestyleType="Singleton">
            <property name="Url" type="string" value="socket.tcp://127.0.0.1:6606/"/>
          </object>-->
          <!--查询语言-->
          <object name="PLSqlLanguage" assembly="EAS.Data.Provider" type="EAS.Data.Linq.PLSqlLanguage" LifestyleType="Thread"/>
          <!--直连服务桥-->
          <object name="ServiceBridger" assembly="EAS.MicroKernel" type="EAS.Services.DirectServiceBridger" LifestyleType="Singleton" >
            <property name="AutoLoad" type="bool" value="true"/>
          </object>-->
          <!--日志管理-->
          <object name="Logger" assembly="EAS.MicroKernel" type="EAS.Loggers.TextLogger" LifestyleType="Singleton" />
          <!--缓存访问器、旧版兼容-->
          <object name="CacheAccessor" assembly="EAS.Data" type="EAS.Data.ORM.CacheAccessor" LifestyleType="Singleton" />
        </objects>
      </eas>
    
      <FineUI DebugMode="true" />
      <system.web>
        <pages controlRenderingCompatibilityVersion="4.0" clientIDMode="AutoID">
          <controls>
            <add assembly="FineUI" namespace="FineUI" tagPrefix="f" />
          </controls>
        </pages>
        <httpModules>
          <add name="FineUIScriptModule" type="FineUI.ScriptModule, FineUI" />
        </httpModules>
        <compilation debug="true" targetFramework="4.0" />
        <customErrors mode="Off" />
        <authentication mode="Forms">
          <forms name=".FORMS_AUTH" loginUrl="~/default.aspx" timeout="120" defaultUrl="~/main.aspx" protection="All" path="/" />
        </authentication>
        <authorization>
          <deny users="?" />
        </authorization>
      </system.web>
      <location path="icon">
        <system.web>
          <authorization>
            <allow users="*" />
          </authorization>
        </system.web>
      </location>
      <location path="res">
        <system.web>
          <authorization>
            <allow users="*" />
          </authorization>
        </system.web>
      </location>
      <location path="extjs">
        <system.web>
          <authorization>
            <allow users="*" />
          </authorization>
        </system.web>
      </location>
    </configuration>
  • 相关阅读:
    hiho一下 第115周:网络流一•Ford-Fulkerson算法 (Edmond-Karp,Dinic,SAP)
    hiho一下 第二周&第四周:从Trie树到Trie图
    2016 acm香港网络赛 C题. Classrooms(贪心)
    2016 acm香港网络赛 F题. Crazy Driver(水题)
    2016 acm香港网络赛 B题. Boxes
    系统吞吐量(TPS)、用户并发量、性能测试概念和公式(转发)
    使Eclipse下支持编写HTML/JS/CSS/JSP页面的自动提示。
    Tomcat 系统架构与设计模式,第 2 部分: 设计模式分析
    Tomcat 系统架构与设计模式,第 1 部分: 工作原理
    Tomcat源码分析
  • 原文地址:https://www.cnblogs.com/docomo/p/3732187.html
Copyright © 2011-2022 走看看