More Related Content
PDF
JavaEE7徹底入門 プレゼンテーション層の開発 JSF PDF
PDF
100%Kotlin ORM Ktormを試してみた PDF
Introduction To Liquibase PDF
PDF
PDF
PPT
What's hot
PDF
InnoDB Locking Explained with Stick Figures PDF
PDF
PDF
GraalVM の概要と、Native Image 化によるSpring Boot 爆速化の夢 PDF
PPTX
Welcome to the Flink Community! PPTX
PPTX
PDF
ストリーム処理を支えるキューイングシステムの選び方 PPTX
PDF
Git-flow workflow and pull-requests PPTX
PDF
MySQL InnoDB Cluster - Group Replication PDF
ゲームのインフラをAwsで実戦tips全て見せます PDF
サーバーが完膚なきまでに死んでもMySQLのデータを失わないための表技 PDF
Introduction to MySQL InnoDB Cluster PDF
PDF
PDF
Grokking TechTalk #20: PostgreSQL Internals 101 PPTX
JSF2.2で簡単webアプリケーション開発
- 1.
- 2.
- 3.
- 4.
- 5.
- 6.
- 7.
- 8.
- 9.
- 10.
- 11.
JAX-RSの場合
<form action=”/act1”>
<input type=”submit”value=”act1”/>
</form>
<form action=”/act2”>
<input type=”submit” value=”act2”/>
</form>
HTML
@Path
public class ActResource {
@POST
@Path(“act1”)
@Produces(“text/html”)
public Viewable act1() {
//...
}
@POST
@Path(“act2”)
@Produces(“text/html”)
Public Viewable act2() {
//...
}
}
- 12.
- 13.
- 14.
- 15.
- 16.
- 17.
- 18.
- 19.
- 20.
- 21.
- 22.
- 23.
- 24.
- 25.
- 26.
- 27.
- 28.
- 29.
- 30.
- 31.
- 32.
- 33.
- 34.
- 35.
- 36.
- 37.
- 38.
- 39.
- 40.
- 41.
- 42.
- 43.
- 44.
- 45.
- 46.
- 47.
- 48.
- 49.
- 50.
- 51.
- 52.
- 53.
- 54.
- 55.
- 56.
- 57.
- 58.
- 59.
- 60.
- 61.
- 62.
- 63.
- 64.
- 65.
- 66.
- 67.
- 68.
- 69.
- 70.
- 71.
- 72.
- 73.
- 74.
- 75.
- 76.
- 77.
- 78.