目前我有带有以下代码的 RestController
package be.smartask.api;
import be.smartask.api.model.NumberValue;
import be.smartask.api.model.TextValue;
import be.smartask.api.model.Translations;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.*;
/**
* @author Glenn Van Schil
* Created on 21/01/2016
*/
@CrossOrigin
@RestController
@RequestMapping(path = "/values")
public class Controller {
@RequestMapping(method = RequestMethod.POST, headers = "Value-Type=text")
ResponseEntity<?> createAttribute(@RequestBody TextValue value) {
System.out.println(value.getCode());
for (Translations.Translation translation : value.getTranslations().getTranslation()) {
System.out.println(translation.getLang());
System.out.println(translation.getValue());
}
return new ResponseEntity<>(HttpStatus.CREATED);
}
@RequestMapping(method = RequestMethod.POST, headers = "Value-Type=number")
ResponseEntity<?> createAttribute(@RequestBody NumberValue value) {
System.out.println(value.getMinValue());
System.out.println(value.getMaxValue());
return new ResponseEntity<>(HttpStatus.CREATED);
}
}
效果很好,我可以像这样发布一个 NumberValue:
<numberValue id="id" minValue="0" maxValue="10"/>
但是当我将 TextValue 发布到 NumberValue 方法时
<textvalue code="LUXE">
<translations>
<translation lang="en">luxury car</translation>
</translations>
</textvalue>
它仍然有效。它只是将 minValue 和 maxValue 保留为 0,0。
我的问题是:当主体与我的 xsd 文件中定义的不完全相同时,我如何强制执行 400:错误请求(或类似的东西)?我所说的定义是指 xml 标记的名称不相同或缺少必需的 xs:attribute,...
我的 xsd 文件:
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified"
xmlns:xs="http://www.w3.org/2001/XMLSchema">
<!-- ValueVO -->
<xs:complexType name="geopoint">
<xs:attribute type="xs:double" name="lat"/>
<xs:attribute type="xs:double" name="lon"/>
</xs:complexType>
<xs:complexType name="translations">
<xs:sequence>
<xs:element name="translation" minOccurs="0" maxOccurs="unbounded">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute type="xs:string" name="lang" use="required"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="value">
<xs:attribute type="xs:string" name="id" use="required"/>
</xs:complexType>
<xs:complexType name="textValue">
<xs:complexContent>
<xs:extension base="value">
<xs:sequence>
<xs:element type="translations" name="translations"/>
</xs:sequence>
<xs:attribute type="xs:string" name="code" use="required"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="numberValue">
<xs:complexContent>
<xs:extension base="value">
<xs:attribute type="xs:double" name="minValue" use="required"/>
<xs:attribute type="xs:double" name="maxValue" use="required"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="dateValue">
<xs:complexContent>
<xs:extension base="value">
<xs:attribute type="xs:date" name="minValue" use="required"/>
<xs:attribute type="xs:date" name="maxValue" use="required"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="cityValue">
<xs:complexContent>
<xs:extension base="value">
<xs:sequence>
<xs:element type="geopoint" name="geopoint"/>
<xs:element type="translations" name="translations"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="timeValue">
<xs:complexContent>
<xs:extension base="value"/>
</xs:complexContent>
</xs:complexType>
<xs:element name="value" type="value"/>
<xs:element name="textValue" type="textValue"/>
<xs:element name="numberValue" type="numberValue"/>
<xs:element name="dateValue" type="dateValue"/>
<xs:element name="cityValue" type="cityValue"/>
<xs:element name="timeValue" type="timeValue"/>
<xs:element name="values">
<xs:complexType>
<xs:sequence>
<xs:element ref="value" maxOccurs="unbounded" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<!-- END ValueVO -->
</xs:schema>
我根据 Sheetal Mohan Sharma 的回答将以下内容添加到我的 spring 配置中
<?xml version="1.0" ?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:p="http://www.springframework.org/schema/p"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd">
<context:component-scan base-package="be.smartask.api"/>
<mvc:annotation-driven/>
<bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping"/>
<bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter">
<property name="messageConverters">
<list>
<ref bean="marshallingHttpMessageConverter"/>
<bean class="org.springframework.http.converter.StringHttpMessageConverter"/>
</list>
</property>
</bean>
<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/>
</bean>
<bean id="marshallingHttpMessageConverter"
class="org.springframework.http.converter.xml.MarshallingHttpMessageConverter"
p:marshaller-ref="jaxb2Marshaller" p:unmarshaller-ref="jaxb2Marshaller"/>
<bean id="jaxb2Marshaller" class="org.springframework.oxm.jaxb.Jaxb2Marshaller">
<property name="schema" value="classpath:schema/xsd/smartaskRead.xsd"/>
<property name="classesToBeBound">
<list>
<value>be.smartask.api.model.NumberValue</value>
<value>be.smartask.api.model.TextValue</value>
</list>
</property>
</bean>
</beans>
但是 NumberValue 仍然接受 TextValue...
最佳答案
你可以看看using jaxb marshaller and unmarshaller 使用消息转换器和 jaxmashaller 检查 XSD。如果验证失败,将抛出错误,但它可能不是特定的。检查下面的链接。
<bean id="marshallingHttpMessageConverter"
class="org.springframework.http.converter.xml.MarshallingHttpMessageConverter"p:marshaller-ref="jaxb2Marshaller" p:unmarshaller-ref="jaxb2Marshaller" />
<bean id="jaxb2Marshaller">
<property name="schema" value="classpath:/mySchema.xsd"/>
<property name="classesToBeBound">
<list>
<value>com.xyz.RequestPojo</value>
<value>com.xyz.ResponsePojo</value>
</list>
</property>
</bean>
关于java - Spring:根据 XSD 模式验证 REST Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34929016/
给定这段代码defcreate@upgrades=User.update_all(["role=?","upgraded"],:id=>params[:upgrade])redirect_toadmin_upgrades_path,:notice=>"Successfullyupgradeduser."end我如何在该操作中实际验证它们是否已保存或未重定向到适当的页面和消息? 最佳答案 在Rails3中,update_all不返回任何有意义的信息,除了已更新的记录数(这可能取决于您的DBMS是否返回该信息)。http://ar.ru
我有一个模型:classItem项目有一个属性“商店”基于存储的值,我希望Item对象对特定方法具有不同的行为。Rails中是否有针对此的通用设计模式?如果方法中没有大的if-else语句,这是如何干净利落地完成的? 最佳答案 通常通过Single-TableInheritance. 关于ruby-on-rails-Rails-子类化模型的设计模式是什么?,我们在StackOverflow上找到一个类似的问题: https://stackoverflow.co
我想安装一个带有一些身份验证的私有(private)Rubygem服务器。我希望能够使用公共(public)Ubuntu服务器托管内部gem。我读到了http://docs.rubygems.org/read/chapter/18.但是那个没有身份验证-如我所见。然后我读到了https://github.com/cwninja/geminabox.但是当我使用基本身份验证(他们在他们的Wiki中有)时,它会提示从我的服务器获取源。所以。如何制作带有身份验证的私有(private)Rubygem服务器?这是不可能的吗?谢谢。编辑:Geminabox问题。我尝试“捆绑”以安装新的gem..
我主要使用Ruby来执行此操作,但到目前为止我的攻击计划如下:使用gemsrdf、rdf-rdfa和rdf-microdata或mida来解析给定任何URI的数据。我认为最好映射到像schema.org这样的统一模式,例如使用这个yaml文件,它试图描述数据词汇表和opengraph到schema.org之间的转换:#SchemaXtoschema.orgconversion#data-vocabularyDV:name:namestreet-address:streetAddressregion:addressRegionlocality:addressLocalityphoto:i
我希望我的UserPrice模型的属性在它们为空或不验证数值时默认为0。这些属性是tax_rate、shipping_cost和price。classCreateUserPrices8,:scale=>2t.decimal:tax_rate,:precision=>8,:scale=>2t.decimal:shipping_cost,:precision=>8,:scale=>2endendend起初,我将所有3列的:default=>0放在表格中,但我不想要这样,因为它已经填充了字段,我想使用占位符。这是我的UserPrice模型:classUserPrice回答before_val
鉴于我有以下迁移:Sequel.migrationdoupdoalter_table:usersdoadd_column:is_admin,:default=>falseend#SequelrunsaDESCRIBEtablestatement,whenthemodelisloaded.#Atthispoint,itdoesnotknowthatusershaveais_adminflag.#Soitfails.@user=User.find(:email=>"admin@fancy-startup.example")@user.is_admin=true@user.save!ende
我有一个表单,其中有很多字段取自数组(而不是模型或对象)。我如何验证这些字段的存在?solve_problem_pathdo|f|%>... 最佳答案 创建一个简单的类来包装请求参数并使用ActiveModel::Validations。#definedsomewhere,atthesimplest:require'ostruct'classSolvetrue#youcouldevencheckthesolutionwithavalidatorvalidatedoerrors.add(:base,"WRONG!!!")unlesss
我真的很习惯使用Ruby编写以下代码:my_hash={}my_hash['test']=1Java中对应的数据结构是什么? 最佳答案 HashMapmap=newHashMap();map.put("test",1);我假设? 关于java-等价于Java中的RubyHash,我们在StackOverflow上找到一个类似的问题: https://stackoverflow.com/questions/22737685/
我正在使用Ruby2.1.1和Rails4.1.0.rc1。当执行railsc时,它被锁定了。使用Ctrl-C停止,我得到以下错误日志:~/.rvm/gems/ruby-2.1.1/gems/spring-1.1.2/lib/spring/client/run.rb:47:in`gets':Interruptfrom~/.rvm/gems/ruby-2.1.1/gems/spring-1.1.2/lib/spring/client/run.rb:47:in`verify_server_version'from~/.rvm/gems/ruby-2.1.1/gems/spring-1.1.
我有一些非常大的模型,我必须将它们迁移到最新版本的Rails。这些模型有相当多的验证(User有大约50个验证)。是否可以将所有这些验证移动到另一个文件中?说app/models/validations/user_validations.rb。如果可以,有人可以提供示例吗? 最佳答案 您可以为此使用关注点:#app/models/validations/user_validations.rbrequire'active_support/concern'moduleUserValidationsextendActiveSupport: