首页
编程语言
数据库
网络开发
Algorithm算法
移动开发
系统相关
金融统计
人工智能
其他
首页
>
> 详细
COMSW 4111讲解、Databases留学生辅导、讲解SQL、SQL程序语言调试 讲解留学生Processing|辅导Python编程
HW2-W4111
COMSW 4111 -- Introduction to Databases:
Homework 2 Specification
v1.1
Overview
Learning Objectives
HW2 has the following learning objectives:
1. Develop initial experience with database centric web applications, specifically microservices that surface data through a REST API.
2. Understand and apply advanced SQL query capabilities, e.g.
a. Joins.
b. Subqueries.
c. Group By.
d. Views.
e. Accessing relational database metadata.
3. The use of REST APIs to extend the web from simple page viewing to a web of linked, data and APIs, and understanding how to surface data sources and
applications via the web.
https://www.programmableweb.com/sites/default/files/growth-in-web-apis-since-2005_0.png
Web Application Architecture
The figure below is a simple architecture view of a web application. HW2 focuses on the REST API component and the Data Access Layer component. This is a database
course, and the data layer should be the focus. Developing mobile applications and useful web browser applications is an entire semester course in itself. Developing a microservice Business Logic Layer is also a semester course by itself.
The project template will include a simple web browser application that uses a subset of HW2 APIs. The application allows students to get some insight into how web
applications implement the user interface layer.Project Structure
The figure below is an overview of the structure of the HW2 solution.
Students will develop and extend:
● The REST API component.
● RDBDataTable
Students are recommended to install Postman for testing, but this is optional. There is a simple set of content implementing a simple web UI. Students can test using
Lahman 2017 or the Classic Cars tutorial database.
There is a project template for HW2 on GitHub. Students should start by cloning the repository, or downloading and unzipping the project contents. Students will have to
add Flask to their project environment. The Flask site provides general instructions. There are online instructions for adding Flask to a PyCharm project.
The figure above provides an overview of the project template and an explanation of the directories and some files. Students will integrate and extend:
● aeneid.py
● RDBDataTable.py: Students will use the RDBDataTable from HW1. They can copy their code into the project’s RDBDataTable file or replace the file.
● dataservice.py (optionally)Students can add additional files in their implementation.
The file aeneid.py has sample code for processing REST requests.
Deliverables
Your application must implement the following operations/paths:
GET
/api/
/
/
?fields=f1, f2, f3
The fields query parameter is optional.
/api/lahman2017/appearances/willite01_BOS_1960?fields=G_all,GS would return the G_all and GS fields for playerID ‘willite01’, teamID ‘BOS’, yearID ‘1960’ from the
Lahman 2017 Appearances table.
/api/
/
q=
The query string may contain the following parameters:
● children=table1,table2: Specifies that data additional comes from tables table1 and table2 related to table_name by a foreign key relationship.
● fields=table1.field1,f2,table2.f3: Would return the following fields:
○ table_name.f2
○ table1.field1 from child table table1.
○ table2.field3 from child table table2.
● tablen.fieldm = v: The result should only contain data in which the value of field m in tablen is the value m.
● limit=n: Return at most n elements in the result set.
● offset=m: Return data starting at offset m in the result set.
An example is:
/api/lahman/people?
children=appearances,batting,nameLast=Williams,batting.yearID=1960,appearances.yearID=1960&fields=playerID,nameLast,nameFirst,batting.AB,batting.H,appearances
Would return the following data:
[
{
"people": {
"playerID": "willite01",
"nameLast": "Williams",
"namefirst": "Ted"
},
"batting": [
{
"AB": "310",
"H": "98"
}
],
"appearances": [
{
"G_all": "113",
"GS": "87"
}
]
}
]
/api/
/
/
/
?query_string:
Query string may contain:
● fields=field1,f2,f3: Fields from table2.
● field1=v1&field2=v2: The result should only contain data in which the value of field1 in table2 is the value v1, etc.
● limit=n: Return at most n elements in the result set.
● offset=m: Return data starting at offset m in the result set.
An example is:
http://127.0.0.1:5000/api/lahman2017/people/willite01/batting?fields=ab,h&yearid=1960
Would return
{
"data": [
{
"ab": "310",
"h": "98"
}
],
"links": [
{
"rel": "current",
"href": "http://127.0.0.1:5000/api/lahman2017/people/willite01/batting?fields=ab,h&yearid=1960"
}
]}
DELETE and PUT
DELETE and PUT must work on the following paths:
● /api/
/
/
POST
POST must work on the following paths:
● /api/
/
● /api/
/
/
/table_name
Responses
Responses will have the form:
[
{
data: { ... },
links: { … }
}
… …
}
The data section contains the query response data. The links section contains URLs referencing:
● The current result.
● The next page in pagination.
● The previous page in pagination.
An example is below. Your application should set a default offset of 10.
{
"data": [
{
"playerID": {
"value": "williar01",
"link": {
"rel": "people",
"href": "/api/people/williar01"
}
},
"nameFirst": "Art",
"nameLast": "Williams"
},
{
"playerID": {
"value": "willibe01",
"link": {
"rel": "people",
"href": "/api/people/willibe01"
}
},
"nameFirst": "Bernie",
"nameLast": "Williams"
},
{
"playerID": {
"value": "willibe02",
"link": {
"rel": "people",
"href": "/api/people/willibe02"
}
},
"nameFirst": "Bernie",
"nameLast": "Williams"
}
],
"links": [
{
"rel": "current",
"href": "http://127.0.0.1:5000/api/lahman2017/people?nameLast=Williams&fields=playerID,nameFirst,nameLast&offset=3&limit=3"
},
{
"rel": "next",
"href": "http://127.0.0.1:5000/api/lahman2017/people?nameLast=Williams&fields=playerID,nameFirst,nameLast&offset=6&limit=3"
},
{
"rel": "previous",
"href": "http://127.0.0.1:5000/api/lahman2017/people?nameLast=Williams&fields=playerID,nameFirst,nameLast&offset=0&limit=3"
}
]}
You must test your code!
Published by Google Drive – Report Abuse – Updated automatically every 5 minutes
联系我们
QQ:99515681
邮箱:99515681@qq.com
工作时间:8:00-21:00
微信:codinghelp
热点文章
更多
辅导 comm2000 creating socia...
2026-01-08
讲解 isen1000 – introductio...
2026-01-08
讲解 cme213 radix sort讲解 c...
2026-01-08
辅导 csc370 database讲解 迭代
2026-01-08
讲解 ca2401 a list of colleg...
2026-01-08
讲解 nfe2140 midi scale play...
2026-01-08
讲解 ca2401 the universal li...
2026-01-08
辅导 engg7302 advanced compu...
2026-01-08
辅导 comp331/557 – class te...
2026-01-08
讲解 soft2412 comp9412 exam辅...
2026-01-08
讲解 scenario # 1 honesty讲解...
2026-01-08
讲解 002499 accounting infor...
2026-01-08
讲解 comp9313 2021t3 project...
2026-01-08
讲解 stat1201 analysis of sc...
2026-01-08
辅导 stat5611: statistical m...
2026-01-08
辅导 mth2010-mth2015 - multi...
2026-01-08
辅导 eeet2387 switched mode ...
2026-01-08
讲解 an online payment servi...
2026-01-08
讲解 textfilter辅导 r语言
2026-01-08
讲解 rutgers ece 434 linux o...
2026-01-08
热点标签
mktg2509
csci 2600
38170
lng302
csse3010
phas3226
77938
arch1162
engn4536/engn6536
acx5903
comp151101
phl245
cse12
comp9312
stat3016/6016
phas0038
comp2140
6qqmb312
xjco3011
rest0005
ematm0051
5qqmn219
lubs5062m
eee8155
cege0100
eap033
artd1109
mat246
etc3430
ecmm462
mis102
inft6800
ddes9903
comp6521
comp9517
comp3331/9331
comp4337
comp6008
comp9414
bu.231.790.81
man00150m
csb352h
math1041
eengm4100
isys1002
08
6057cem
mktg3504
mthm036
mtrx1701
mth3241
eeee3086
cmp-7038b
cmp-7000a
ints4010
econ2151
infs5710
fins5516
fin3309
fins5510
gsoe9340
math2007
math2036
soee5010
mark3088
infs3605
elec9714
comp2271
ma214
comp2211
infs3604
600426
sit254
acct3091
bbt405
msin0116
com107/com113
mark5826
sit120
comp9021
eco2101
eeen40700
cs253
ece3114
ecmm447
chns3000
math377
itd102
comp9444
comp(2041|9044)
econ0060
econ7230
mgt001371
ecs-323
cs6250
mgdi60012
mdia2012
comm221001
comm5000
ma1008
engl642
econ241
com333
math367
mis201
nbs-7041x
meek16104
econ2003
comm1190
mbas902
comp-1027
dpst1091
comp7315
eppd1033
m06
ee3025
msci231
bb113/bbs1063
fc709
comp3425
comp9417
econ42915
cb9101
math1102e
chme0017
fc307
mkt60104
5522usst
litr1-uc6201.200
ee1102
cosc2803
math39512
omp9727
int2067/int5051
bsb151
mgt253
fc021
babs2202
mis2002s
phya21
18-213
cege0012
mdia1002
math38032
mech5125
07
cisc102
mgx3110
cs240
11175
fin3020s
eco3420
ictten622
comp9727
cpt111
de114102d
mgm320h5s
bafi1019
math21112
efim20036
mn-3503
fins5568
110.807
bcpm000028
info6030
bma0092
bcpm0054
math20212
ce335
cs365
cenv6141
ftec5580
math2010
ec3450
comm1170
ecmt1010
csci-ua.0480-003
econ12-200
ib3960
ectb60h3f
cs247—assignment
tk3163
ics3u
ib3j80
comp20008
comp9334
eppd1063
acct2343
cct109
isys1055/3412
math350-real
math2014
eec180
stat141b
econ2101
msinm014/msing014/msing014b
fit2004
comp643
bu1002
cm2030
联系我们
- QQ: 99515681 微信:codinghelp
© 2024
www.7daixie.com
站长地图
程序辅导网!