9
12

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 3 years have passed since last update.

JSFがさっぱりうまくいかないときに役立ちたいリンク集

Last updated at Posted at 2020-08-12

実行順序

実行順序 もの CDIの利用
1 コンストラクタ x
2 ポストコンストラクタ o
3 viewAction o

スコープ

スコープアノテーション バッキングBeanの寿命
@RequestScoped 一回の呼び出し(リクエスト)とそれへの応答(レスポンス)の間存続
@SessionScoped HTTPセッションが続いている間(ログインしている間)存続
@ApplicationScoped ウェブアプリケーションが実行されている間存続
@ConversationScoped 一回以上のリクエストの間で、開始と終了をプログラムで制御する
@Dependent インジェクト先のスコープを引き継ぐ(予めスコープを決められない場合に使う)
@ViewScoped リクエストにより表示されたJSFページが他のページへ切り替わる直前まで存続。画面をリロードしても存続。

@PostConstruct

@Inject @Autowired

ui:repeat

h:head

h:commandButton、h:button

h:selectOneMenu

h:selectOneRadio

h:inputTextarea

maxlengthを指定する方法
<html xmlns="http://www.w3.org/1999/xhtml"
<!--省略-->
  xmlns:pt="http://xmlns.jcp.org/jsf/passthrough">
<!--省略-->
<h:inputTextarea pt:maxlength="5000" />

f:ajax

バリデーター

f:convertDateTime

その他Java

Javaの基本を教えてくれるサイト集 - Qiita

ついでにJavaScript

一緒にGlassFish / Payara

困った

9
12
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
9
12

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?