- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 Web 服务,它返回枚举类型的对象列表。该枚举已使用 @XmlRootElement 以及另一个包装类型进行注释,其中包含这些枚举类型对象的列表以及另一个字符串成员。
@XmlRootElement(name = "indicator")
public enum IndicatorEnum
{
FROST_DAYS,
ICING_DAYS,
MAX_TEMPS_MUCH_ABOVE_AVG,
UNKNOWN;
public static IndicatorEnum fromInt(final int value)
{
switch (value)
{
case 1:
return FROST_DAYS;
case 2:
return ICING_DAYS;
case 3:
return MAX_TEMPS_MUCH_ABOVE_AVG;
default:
return UNKNOWN;
}
}
public static IndicatorEnum fromString(final String dataType)
{
if ("FROST_DAYS".equals(dataType))
{
return FROST_DAYS;
}
else if ("ICING_DAYS".equals(dataType))
{
return ICING_DAYS;
}
else if ("MAX_TEMPS_MUCH_ABOVE_AVG".equals(dataType))
{
return MAX_TEMPS_MUCH_ABOVE_AVG;
}
return UNKNOWN;
}
public String getValueUnits()
{
switch (this)
{
case FROST_DAYS:
return "days";
case ICING_DAYS:
return "days";
case MAX_TEMPS_MUCH_ABOVE_AVG:
return "percentages";
default:
return "UNKNOWN VALUE UNITS";
}
}
public String toDisplayString()
{
switch (this)
{
case FROST_DAYS:
return "Frost Days";
case ICING_DAYS:
return "Icing Days";
case MAX_TEMPS_MUCH_ABOVE_AVG:
return "Max Temps Much Above Average";
default:
return "UNKNOWN";
}
}
@Override
public String toString()
{
switch (this)
{
case FROST_DAYS:
return "FROST_DAYS";
case ICING_DAYS:
return "ICING_DAYS";
case MAX_TEMPS_MUCH_ABOVE_AVG:
return "MAX_TEMPS_MUCH_ABOVE_AVG";
default:
return "UNKNOWN";
}
}
}
<小时/>
@XmlRootElement(name = "available_indicators_for_station")
public class AvailableIndicatorsForStationBean
{
private List<IndicatorEnum> availableIndicators;
private String stationCode;
/**
* Default, no-arg constructor.
*/
public AvailableIndicatorsForStationBean()
{
}
/**
* Constructor.
*
* @param stationCode
* @param availableIndicators
*/
public AvailableIndicatorsForStationBean(final String stationCode,
final List<IndicatorEnum> availableIndicators)
{
this.stationCode = stationCode;
this.availableIndicators = availableIndicators;
}
@XmlElement(name = "available_indicators")
public List<IndicatorEnum> getAvailableIndicators()
{
return availableIndicators;
}
@XmlElement(name = "station_code")
public String getStationCode()
{
return stationCode;
}
public void setAvailableIndicators(final List<IndicatorEnum> availableIndicators)
{
this.availableIndicators = availableIndicators;
}
public void setStationCode(final String stationCode)
{
this.stationCode = stationCode;
}
}
我有一个返回模型和 View 的 Controller 类,如下所示:
@RequestMapping(method = RequestMethod.GET, value = "/available_indicators_for_station_xml")
public ModelAndView getAvailableIndicatorsXml(@RequestParam("station_code") final String stationCode)
{
// validate the parameters
if ((stationCode == null) || stationCode.isEmpty())
{
throw new RuntimeException("Missing required request parameter: \'station_code\'");
}
// find the matching list of Observations entities
List<IndicatorEnum> availableIndicators = stationDao.findAvailableIndicatorsForStation(stationCode);
// convert the list of indicators to a JAXB bindable model object
AvailableIndicatorsForStationBean availableIndicatorsForStationBean = new AvailableIndicatorsForStationBean(stationCode,
availableIndicators);
// pass it on as a model and view
return new ModelAndView(jaxb2MarshallingView, "available_indicators_for_station", availableIndicatorsForStationBean);
}
当我向 Web 服务发出请求时,我收到 JAXB 编码错误:
javax.servlet.ServletException: Unable to locate object to be marshalled in model: {org.springframework.validation.BindingResult.available_indicators_for_station=org.springframework.validation.BeanPropertyBindingResult: 0 errors, available_indicators_for_station=com.abc.rest.model.AvailableIndicatorsForStationBean@9eb530}
org.springframework.web.servlet.view.xml.MarshallingView.renderMergedOutputModel(MarshallingView.java:100)
org.springframework.web.servlet.view.AbstractView.render(AbstractView.java:250)
org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1063)
org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:801)
org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:719)
org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:644)
org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:549)
javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
任何人都可以告诉我我做错了什么吗?预先感谢您的任何建议。
最佳答案
我遇到了这个异常,javax.servlet.ServletException:无法定位要在模型中编码的对象,因为我放置在模型中的对象具有公共(public)成员,我不希望将其序列化,但我没有将其注释为@ XmlTransient
关于java - Spring MVC + JAXB : ServletException: Unable to locate object to be marshalled in model,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7068628/
我正在尝试在 python 中编写正则表达式来查找目录路径:我的文本如下所示: text = "The public disk is: \\\\diskA\\FolderB\\SubFolderC\\
我想写一个LocationListener,它把最近最精确的位置作为它的位置。我打算在我的 LocationListener 中使用此代码: @Override public void
我想建立一个有光泽和 plotly 的交互式图表。 Shiny 有一个内置功能来获取有关用户交互的信息。比如:input$plot_click、input$plot_dblclick、input$pl
我正在使用 MobileFirst 提供的 WL.Device.Geo.acquirePosition(onGeoLocationSuccess, onGeoLocationFailure, opti
我最近开始使用 ionic 框架,它里面有 angular js。为了在屏幕之间导航,我使用了 $location.path 并且效果很好。但是,在我下载的一个示例中,我看到 $state.go 被用
谁能解释一下这种行为?我使用 history.pushState(null, null, '#test'); 推送历史状态。然后,当尝试使用console.log(window.location.ha
这里是相关代码: https://www.facebook.com/sharer/sharer.php?u={{$location.absUrl()}} https://www.facebook.c
这两个重定向之间有什么区别?我有一个应用程序,当我使用时,它可以在 chrome 和 android 4 上正常工作,但在 android 2.x.x 上不能正常工作 document.locatio
JavaScript 的区别是什么 window.location.href = window.location.href 和 window.location.reload() 功能? 最佳答案 如果
有什么区别 window.location.href="http://example.com"; window.location.replace("http://example.com"); wind
JavaScript 的区别是什么 window.location.href = window.location.href 和 window.location.reload() 功能? 最佳答案 如果
以下 3 个指令之间有区别吗? location ~* \.(png)$ { expires max; log_not_found off; } location ~ \.(png)$ {
位于正文末尾之前的以下脚本在 Internet Explorer 和 Chrome(以及任何其他浏览器)中都会被调用。但重定向到指定的 URL 仅发生在 IE 中。我还尝试了 window.locat
我正在使用 Angular ngRouter。我需要更改 url 路径以及搜索参数。我知道 $location.path 和 $location.search,但是有没有一个函数可以同时设置它们? 最
在angularjs中用$location和window.location哪个更好。 例如,我们可以使用$location.path() 或window.location.href 来完成同样的工作。
我在我的网站上使用上述 2 个命令。似乎它们对 95% 访问它应该触发的页面的人有效,但对其他人则不会。 有谁知道是否可以完全阻止这些 javascript 命令?我真的很头疼为什么它们有时不起作用。
这是我无法弄清楚的另一个错误。 我有这个类ExtendedLocation extends Location实例化时抛出 ClassCastExceptioncurrentGpsLocation =
我一直在尝试简单地将一个包含两个变量(一个字符串和一个位置)的类推送和读取到 firebase,但我一直收到此错误。 **com.google.firebase.database.DatabaseEx
我注意到 iPhone 上的“常用位置”似乎比监控 iOS 访问的应用程序 (https://developer.apple.com/reference/corelocation/clvisit) 使
在我的 javascript 代码中,在某些时候,我需要刷新窗口(用户上传了新图片但在页面中仍然可以看到它) 我想知道为什么 location.href = location.href 不刷新窗口?
我是一名优秀的程序员,十分优秀!