おにぎり(梅)

敵を知り己を知れば、ナントヤラ。


http://www.springframework.net/

気になった所、メモ書いてみたり…とか。

  • Spring 1.1 Preview Release
    • Dependency Injection for ASP.NET web pages and controls
    • Bi-directional data binding between web controls and the data model

SpringでASP.NET対応どうやってるのかは、ちょっと見た方が良い感じ。
意外と簡単にコンパイル済みのasp参照にアクセス出来るっぽい。

        public static IHttpHandler CreatePageInstance(string pageName)
        {
            if (HttpContext.Current == null)
            {
                throw new ObjectCreationException(
                    "Unable to instantiate page. HttpContext is not defined.");
            }
            IHttpHandler page = null;
            try
            {
                HttpContext context = HttpContext.Current;
                page = PageParser.GetCompiledPageInstance(
                    pageName, context.Server.MapPath(pageName), context);
            }
            catch (Exception ex)
            {
                throw new ObjectCreationException("Unable to instantiate page.", ex);
            }
            return page;
        }
  • 1.0.0 release of Spring.NET
    • Configuration of custom collection classes
    • AOP proxy support for inner classes

インナークラスって、特別な仕組みを用意しないとAOP作れないのかな…。
中身を見てみないと分からないか…。

むしろ、仲間かなぁ。
http://www.mono-project.com/Downloads

Windows版との互換性の話は色々検証しないと分からないので後回し。
XSPも忘れずに見る感じで。