0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

VelocityとSpringMVCの連携

Posted at

###ViewResolverを設定

<bean id="velocityConfigurer" class="org.springframework.web.servlet.view.velocity.VelocityConfigurer"> 
  <property name="resourceLoaderPath" value="/WEB-INF/view/" /> 
</bean> 

<bean id="viewResolver" class="org.springframework.web.servlet.view.velocity.VelocityViewResolver"> 
	<property name="suffix" value=".vm" /> 
</bean> 

この設定で[/WEB-INF/view/]の中のvmファイルがマークされ、
更にveiwResolverに対してサフィックスに[.vm]を連結するように設定します。

※pomにライブラリを設定してください。

###テンプレートを配置

テンプレートとなるvmファイルは[/WEB-INF/view]フォルダに配置してください。

<!DOCTYPE html>
<html>
<head>
    <title>Welcome</title>
</head>

<body>
	<p>owner_name= ${owner.ownerName} </p>
    <p>owner_id= ${owner.ownerId} </p>
</body>

</html>

これで[Owner]BeanにセットしたownerNameとownerIdが置き換わることになります。
jspと一緒ですね。

###Owner

class Owner {
    private String ownerId;
    private String ownerName;

    ゲッター
    セッター
}

###実行クラス(@Controller)

@Controller
class SampleRun {

    @RequestMapping("hello")
    public String hello(Model model) {
        Owner owner = new Owner();
        owner.setOwnerName("taro");
        owner.setOwnerId("1");

        model.addAttribute("owner", owner);

        return "vmファイル名";
    }

}

vmファイル名にテンプレート名を入れてください。
至って普通のコントローラーです。

どうやらこのコントローラーからview名を返して、VelocityViewResolverに名前解決をさせる際にvmファイルとmodelにセットしたBeanとを使ってマージしてくれるようです。

###感想
最初はとっつきにくく、よくわからない存在だったVelocity。
だけど振り返ってみると意外とあっさりしているもの。
そんなものです。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?