From d9d064d136d415dd92ffe8e5305082d2bc5b0cf8 Mon Sep 17 00:00:00 2001 From: senju Date: Wed, 19 Aug 2009 22:21:58 +0900 Subject: [PATCH] =?utf8?q?=E3=83=A6=E3=83=BC=E3=82=B6=E3=83=BC=E3=83=9B?= =?utf8?q?=E3=83=BC=E3=83=A0=E3=82=92=E3=81=BB=E3=81=BC=E7=A9=BA=E3=81=AE?= =?utf8?q?=E7=8A=B6=E6=85=8B=E3=81=A7=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 機能なし。 --- .../rabbitBTS/controllers/HomeController.java | 31 ++++++++++++++++++++++ war/WEB-INF/views/home/index.ftl | 6 +++++ 2 files changed, 37 insertions(+) create mode 100644 src/jp/sourceforge/rabbitBTS/controllers/HomeController.java create mode 100644 war/WEB-INF/views/home/index.ftl diff --git a/src/jp/sourceforge/rabbitBTS/controllers/HomeController.java b/src/jp/sourceforge/rabbitBTS/controllers/HomeController.java new file mode 100644 index 0000000..fcd78a5 --- /dev/null +++ b/src/jp/sourceforge/rabbitBTS/controllers/HomeController.java @@ -0,0 +1,31 @@ +/* + Copyright 2009 senju@users.sourceforge.jp + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + */ + +package jp.sourceforge.rabbitBTS.controllers; + +import org.springframework.stereotype.Controller; +import org.springframework.web.bind.annotation.RequestMapping; + +/** + * ユーザーホーム用コントローラ + */ +@Controller +public class HomeController extends BaseController implements IController { + @RequestMapping + public void index() { + + } +} diff --git a/war/WEB-INF/views/home/index.ftl b/war/WEB-INF/views/home/index.ftl new file mode 100644 index 0000000..7f65d5e --- /dev/null +++ b/war/WEB-INF/views/home/index.ftl @@ -0,0 +1,6 @@ +[#ftl] +[#assign title="${acc.nickName}ホーム"] +[#include "/common/head.ftl"] +

ホーム

+ +[#include "/common/foot.ftl"] -- 2.11.0