Java Restlet - 如何将资源动态附加到路由器?
Java Restlet - How do I dynamically attach resources to the router?
这是我正在尝试做的事情的基础知识。我正在从事一个项目,在该项目中我从各种 Web API 创建一个混搭页面。混搭页面包含国家信息。
我有一个 BLL 层,我在其中创建混搭页面(html 页面,其中使用 Chunk Library 输入国家/地区)。这是用来设置模板的方法
public String GetTemplate(Country country) throws IOException {
ClassLoader classLoader = Thread.currentThread().getContextClassLoader();
URL resource = classLoader.getResource("BLL/themes/page.html");
Theme theme = new Theme("src/BLL", "themes");
Chunk html = theme.makeChunk("page", "html");
html.set("countryName", country.getName());
html.set("countryCode", country.getCode());
html.set("countryContinent", country.getContinent());
html.set("countryCapital", country.getCapital());
html.set("countryAreaInSqKm", country.getAreaInSqKm());
html.set("countryPopulation", country.getPopulation());
html.set("countryCurrencyCode", country.getCurrencyCode());
html.set("countryExchangeRate", country.getExchangeRate());
html.set("countryFlagUrl", country.getFlagUrl());
html.set("countryDescription", country.getDescription());
html.set("countryMap", country.getMapLocation());
return html.toString();
}
最终我将使用所有可用国家/地区的数据库。
所以我想在 Restlet 服务器上做的是像这样或以类似的方式遍历所有国家?
public Restlet createInboundRoot() {
Router router = new Router(getContext());
router.attach("/countries/", Countries.class);
for (Country country : cm.GetAllCountries()) {
router.attach("/countries/" + country.getName(), new CountryTemplate(country));
// Obviously this doesn't work, and it doesn't work with getClass() either.
}
return router;
}
因此,我试图将我的资源获取到 return get 方法中的 html(来自 TemplateManager):
public class CountryTemplate extends ServerResource {
CountryManager cm = null;
TemplateManager tm = null;
Country country = null;
public CountryTemplate(Country _country) throws Exception {
cm = new CountryManager();
tm = new TemplateManager();
country = _country;
}
@Get("html")
public String getTemplate() throws IOException, RemoteException, UnsupportedCurrencyException {
return tm.GetTemplate(country);
}
}
真的有这样的方法吗,还是我的做法全错了?
如果其他人发现自己在这里,Tim 的代码完全符合要求。贴出的代码改成了他的版本
与其尝试对 REST 资源的动态动态行为进行硬编码,不如使用查询参数。
首先,您可以创建一个新的 REST 资源 /countries/html/
并将其绑定到 class CountryResource
。此资源将接受一个查询参数 countryID
,该参数对应于您要访问的 HTML 国家/地区:
public Restlet createInboundRoot() {
Router router = new Router(getContext());
router.attach("/countries/", Countries.class);
router.attach("/countries/html/", CountryResource.class);
return router;
}
在您对 CountryResource
的定义中,您可以访问查询参数 countryID
以获得适当的 HTML 内容:
public class CountryResource extends ServerResource {
CountryManager cm;
TemplateManager tm;
public CountryTemplate() throws Exception {
// Note: I usually do NOT define a constructor using Restlets,
// but you should be OK doing this
cm = new CountryManager();
tm = new TemplateManager();
}
@Get("html")
public String getTemplate() throws IOException, RemoteException, UnsupportedCurrencyException {
String countryID = getQueryValue("countryID");
Country country = tm.getCountry(countryID);
return tm.GetTemplate(country);
}
}
我假设 CountryManager
有一个方法 getCountry()
,它可以 return 一个基于输入字符串的 Country
对象。如果目前不存在这样的方法,那么您将需要找到一种方法将传入的查询参数映射到代码中的实际 Country
对象。
这是我正在尝试做的事情的基础知识。我正在从事一个项目,在该项目中我从各种 Web API 创建一个混搭页面。混搭页面包含国家信息。
我有一个 BLL 层,我在其中创建混搭页面(html 页面,其中使用 Chunk Library 输入国家/地区)。这是用来设置模板的方法
public String GetTemplate(Country country) throws IOException {
ClassLoader classLoader = Thread.currentThread().getContextClassLoader();
URL resource = classLoader.getResource("BLL/themes/page.html");
Theme theme = new Theme("src/BLL", "themes");
Chunk html = theme.makeChunk("page", "html");
html.set("countryName", country.getName());
html.set("countryCode", country.getCode());
html.set("countryContinent", country.getContinent());
html.set("countryCapital", country.getCapital());
html.set("countryAreaInSqKm", country.getAreaInSqKm());
html.set("countryPopulation", country.getPopulation());
html.set("countryCurrencyCode", country.getCurrencyCode());
html.set("countryExchangeRate", country.getExchangeRate());
html.set("countryFlagUrl", country.getFlagUrl());
html.set("countryDescription", country.getDescription());
html.set("countryMap", country.getMapLocation());
return html.toString();
}
最终我将使用所有可用国家/地区的数据库。
所以我想在 Restlet 服务器上做的是像这样或以类似的方式遍历所有国家?
public Restlet createInboundRoot() {
Router router = new Router(getContext());
router.attach("/countries/", Countries.class);
for (Country country : cm.GetAllCountries()) {
router.attach("/countries/" + country.getName(), new CountryTemplate(country));
// Obviously this doesn't work, and it doesn't work with getClass() either.
}
return router;
}
因此,我试图将我的资源获取到 return get 方法中的 html(来自 TemplateManager):
public class CountryTemplate extends ServerResource {
CountryManager cm = null;
TemplateManager tm = null;
Country country = null;
public CountryTemplate(Country _country) throws Exception {
cm = new CountryManager();
tm = new TemplateManager();
country = _country;
}
@Get("html")
public String getTemplate() throws IOException, RemoteException, UnsupportedCurrencyException {
return tm.GetTemplate(country);
}
}
真的有这样的方法吗,还是我的做法全错了?
如果其他人发现自己在这里,Tim 的代码完全符合要求。贴出的代码改成了他的版本
与其尝试对 REST 资源的动态动态行为进行硬编码,不如使用查询参数。
首先,您可以创建一个新的 REST 资源 /countries/html/
并将其绑定到 class CountryResource
。此资源将接受一个查询参数 countryID
,该参数对应于您要访问的 HTML 国家/地区:
public Restlet createInboundRoot() {
Router router = new Router(getContext());
router.attach("/countries/", Countries.class);
router.attach("/countries/html/", CountryResource.class);
return router;
}
在您对 CountryResource
的定义中,您可以访问查询参数 countryID
以获得适当的 HTML 内容:
public class CountryResource extends ServerResource {
CountryManager cm;
TemplateManager tm;
public CountryTemplate() throws Exception {
// Note: I usually do NOT define a constructor using Restlets,
// but you should be OK doing this
cm = new CountryManager();
tm = new TemplateManager();
}
@Get("html")
public String getTemplate() throws IOException, RemoteException, UnsupportedCurrencyException {
String countryID = getQueryValue("countryID");
Country country = tm.getCountry(countryID);
return tm.GetTemplate(country);
}
}
我假设 CountryManager
有一个方法 getCountry()
,它可以 return 一个基于输入字符串的 Country
对象。如果目前不存在这样的方法,那么您将需要找到一种方法将传入的查询参数映射到代码中的实际 Country
对象。