La technologie JSP Flashcards

1
Q

Éléments JSP

A
  • Éléments de script
  • Directives
  • Éléments d’action
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Éléments de script

A
  • Commentaires
  • Déclarations
  • Scriptlets
  • Expressions
  • Expressions du langage d’expression
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Commentaires

A

pour placer des commentaires JSP

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Déclarations

A

permet de déclarer des variables et des méthodes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Scriptlet

A

bloc de code java placé entre les délimiteurs JSP

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Expression

A

permet d’évaluer une expression java et retourner un résultat.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Expressions du langage d’expression

A

${unObjet.aPropriete}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Objets implicites JSP

A
  • request
  • response
  • out
  • session
  • config
  • application
  • page
  • pageContext
  • exception
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Directives JSP

A
  • page
  • include
  • taglib
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Attributs de page

A
  • language
  • extends
  • import
  • session
  • buffer
  • info
  • errorPage
  • contentType
  • pageEncoding
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Attributs de taglib

A
  • uri
  • tagdir
  • prefix
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Attributs de include

A

file

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Eléments d’actions

A
  • Standards

- JSTL

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Actions Standards

A
  • jsp:include
  • jsp:useBean
  • jsp:getProperty
  • jsp:setProperty
  • jsp:forward
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Actions JSTL

A
  • Core
  • I18n
  • XML
  • SQL
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Cycle de vie d’une page JSP

A
  1. Translation
  2. Initialisation
  3. Exécution
  4. Finalisation