Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
CPAN ライブラリを使用したい。use Data::UUID;この行を Mason ファイルのどこに追加すればよいですか?
use Data::UUID;
Mason リクエストを処理する file.pl 内。
#!/usr/local/bin/perl use Mason; use Data::UUID; my $mason = Mason->new(comp_root => '...'); print $mason->run('/foo')->output;
私はSpringMVCWebアプリで作業しており、personSpringのValidatorを使用してdbオブジェクトを検証し、検証者の結果をJSP形式で表示しようとしていform:errors path=""ます。私はコントローラーにサーバーサイドメソッドを持っています:
person
form:errors path=""
@Reque