ASP.NET MVCでグローバル変数をどのように宣言しますか?
public static class GlobalVariables
{
// readonly variable
public static string Foo
{
get
{
return "foo";
}
}
// read-write variable
public static string Bar
{
get
{
return HttpContext.Current.Application["Bar"] as string;
}
set
{
HttpContext.Current.Application["Bar"] = value;
}
}
}
技術的には、プロジェクトの任意の場所にあるクラスの静的変数またはプロパティは、グローバル変数になります。
public static class MyGlobalVariables
{
public static string MyGlobalString { get; set; }
}
しかし、@ SLaksが言うように、それらは正しく処理されない場合、「潜在的に」悪い習慣と危険になる可能性があります。たとえば、上記の例では、同じプロパティにアクセスしようとする複数のリクエスト(スレッド)があります。これは、複合型またはコレクションの場合は問題になる可能性があるため、何らかのロックを実装する必要があります。
あなたはそれらをアプリケーションに入れることができます:
Application["GlobalVar"] = 1234;
これらは、現在のIIS /仮想アプリケーション内でのみグローバルです。これは、webfarmではサーバーに対してローカルであり、アプリケーションのルートである仮想ディレクトリ内にあることを意味します。
非静的変数の場合、以下のようにアプリケーションクラスディクショナリでソートしました。
Global.asax.acで:
namespace MvcWebApplication
{
// Note: For instructions on enabling IIS6 or IIS7 classic mode,
// visit http://go.Microsoft.com/?LinkId=9394801
public class MvcApplication : System.Web.HttpApplication
{
private string _licensefile; // the global private variable
internal string LicenseFile // the global controlled variable
{
get
{
if (String.IsNullOrEmpty(_licensefile))
{
string tempMylFile = Path.Combine(Path.GetDirectoryName(Assembly.GetAssembly(typeof(LDLL.License)).Location), "License.l");
if (!File.Exists(tempMylFile))
File.Copy(Server.MapPath("~/Content/license/License.l"),
tempMylFile,
true);
_licensefile = tempMylFile;
}
return _licensefile;
}
}
protected void Application_Start()
{
Application["LicenseFile"] = LicenseFile;// the global variable's bed
AreaRegistration.RegisterAllAreas();
RegisterGlobalFilters(GlobalFilters.Filters);
RegisterRoutes(RouteTable.Routes);
}
}
}
そしてコントローラーで:
namespace MvcWebApplication.Controllers
{
public class HomeController : Controller
{
//
// GET: /Home/
public ActionResult Index()
{
return View(HttpContext.Application["LicenseFile"] as string);
}
}
}
このようにして、ASP.NET MVCにグローバル変数を含めることができます:)
注:オブジェクトが文字列ではない場合は、次のように記述します。
return View(HttpContext.Application["X"] as yourType);
また、Configクラスなどの静的クラスまたはそれらの行に沿ったものを使用することもできます...
public static class Config
{
public static readonly string SomeValue = "blah";
}
スチールは熱くはほど遠いですが、@ abatishchevのソリューションと this post の答えを組み合わせて、この結果に至りました。役に立てば幸いです。
public static class GlobalVars
{
private const string GlobalKey = "AllMyVars";
static GlobalVars()
{
Hashtable table = HttpContext.Current.Application[GlobalKey] as Hashtable;
if (table == null)
{
table = new Hashtable();
HttpContext.Current.Application[GlobalKey] = table;
}
}
public static Hashtable Vars
{
get { return HttpContext.Current.Application[GlobalKey] as Hashtable; }
}
public static IEnumerable<SomeClass> SomeCollection
{
get { return GetVar("SomeCollection") as IEnumerable<SomeClass>; }
set { WriteVar("SomeCollection", value); }
}
internal static DateTime SomeDate
{
get { return (DateTime)GetVar("SomeDate"); }
set { WriteVar("SomeDate", value); }
}
private static object GetVar(string varName)
{
if (Vars.ContainsKey(varName))
{
return Vars[varName];
}
return null;
}
private static void WriteVar(string varName, object value)
{
if (value == null)
{
if (Vars.ContainsKey(varName))
{
Vars.Remove(varName);
}
return;
}
if (Vars[varName] == null)
{
Vars.Add(varName, value);
}
else
{
Vars[varName] = value;
}
}
}