- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Grails v3.3.9和jsonView 1.2.10
我有一个域类查询,当对我的域类设备类进行集成测试时,该类失败,扩展了ManagedEntity(抽象),扩展了RootEntity(也是抽象的)。设备有两个静态的withCriteria查询来进行预取。
域类Device.groovy:
Device extends ManagedEntity {
OrgRoleInstance org
Site site
Location location
NetworkDomain domain //can only be in one domain or zero
ProviderNetwork vfNetwork //can be part of one CSP network domain
//simpler option than deviceRoles - not an entity in this case but a join table
Collection<Resource.ResourceRoleType> roles = [] // creates device_roles table no versioning */
Collection<FlexAttribute> attributes = []
Collection<Equipment> buildConfiguration = []
Collection<Interface> interfaces = []
Collection<Alias> aliasNames = []
boolean freeStanding = false
boolean testDevice = false
Product product //ref to portfolio offering if exists
String deviceStatus = "Operational" //or Ceased or ...
String licenceType //e.g. for cisco 903 would be one of "metro servcices", or "metro Ip services", "metro aggregation services"
String licence = "none"
String memory
String storage
String numberOfCpu
Software runtimeOS
boolean isTestEntity () {
testDevice
}
boolean isFreeStanding () {
freeStanding
}
static hasMany = [deviceRoles: Resource, roles: Resource.ResourceRoleType, attributes:FlexAttribute, buildConfiguration: Equipment, interfaces:Interface, aliasNames:Alias]
static belongsTo = [org:OrgRoleInstance] //dont at providerNetwork as belongs to as we dont want cascade delete
static constraints = {
org nullable:true
site nullable:true
location nullable:true
roles nullable:true
domain nullable:true , validator : {NetworkDomain domain, Device dev ->
//assumes org has been set
if (domain == null)
return true
if (dev.org == null)
log.debug "org was null, trying to validate domain is in orgs.domains list - so org must be set first"
NetworkDomain[] validDomains = dev?.org?.domains ?: []
boolean test = validDomains.contains(domain)
test
}
vfNetwork nullable:true , validator : {ProviderNetwork vfNetwork, Device dev ->
if (vfNetwork == null) return true
OrgRoleInstance vf = OrgRoleInstance.findByNameAndRole ("Vodafone", OrgRoleInstance.OrgRoleType.ServiceProvider)
ProviderNetwork[] networks = vf?.providerNetworks ?: []
boolean test = networks.contains (vfNetwork)
if (test == false)
log.debug "Vodafone provider does not yet have any ProviderNetworks to validate to, please create and save any provider networks before assigning to device, then save "
test
}//ensure its in vf's list of provider networks }*/
product nullable:true
deviceStatus nullable:true
licenceType nullable:true
licence nullable:true
memory nullable:true
storage nullable:true
numberOfCpu nullable:true
runtimeOS nullable:true
attributes nullable:true
buildConfiguration nullable:true
interfaces nullable:true
aliasNames nullable:true
}
String toString () {
"Device (manHostname:$manHostName, opState:$opStatus)[id:$id]"
}
//Queries
static Device getFullDeviceById (Serializable id) {
Device.withCriteria (uniqueResult:true) {
join 'domain'
join 'providerNetwork'
join 'site'
join 'location'
join 'runtimeOS'
fetchMode 'product', FetchMode.SELECT
fetchMode 'interfaces', FetchMode.SELECT
fetchMode 'attributes', FetchMode.SELECT
fetchMode 'aliasNames', FetchMode.SELECT
fetchMode 'buildConfiguration', FetchMode.SELECT
idEq (id as Long)
}
}
//Queries
static List<Device> getFullDeviceBySite (Serializable sid) {
Device.withCriteria (uniqueResult:true) {
join 'domain'
join 'providerNetwork'
join 'site'
join 'location'
join 'runtimeOS'
fetchMode 'product', FetchMode.SELECT
fetchMode 'interfaces', FetchMode.SELECT
fetchMode 'attributes', FetchMode.SELECT
fetchMode 'aliasNames', FetchMode.SELECT
fetchMode 'buildConfiguration', FetchMode.SELECT
site {idEq (sid as Long)}
}
}
}
<testcase time="0.0" name="build relationship between two CI " classname="com.softwood.domain.DeviceIntegSpecSpec">
<failure type="org.springframework.beans.factory.UnsatisfiedDependencyException" message="org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'com.softwood.controller.JsonApiRestfulController': Unsatisfied dependency expressed through constructor parameter 0; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'java.lang.Class<?>' available: expected at least 1 bean which qualifies as autowire candidate.
given:
Device pe = Device.getFullDeviceById(2)
assert pe
when : "build a ce and relate the CE and PE "
then:
true
}
import com.softwood.domain.Device
Device pe = Device.getFullDeviceById(2)
println pe
最佳答案
您有一个 Controller JsonApiRestfulController
,它没有no-arg构造函数。您的构造函数需要Class
参数。 Spring无法知道将哪些Class
传递到那里,因此被认为是无效的。您可能希望该 Controller 成为抽象父类。
编辑:
https://github.com/jeffbrown/williamwoodmanconstructor上的项目可简化您的情况并消除大多数不相关的内容。 https://github.com/jeffbrown/williamwoodmanconstructor/blob/cb799545dfa76f78e8203e68cfadb09aed604544/grails-app/controllers/williamwoodmanconstructor/JsonApiRestfulController.groovy是问题。
package williamwoodmanconstructor
import grails.rest.RestfulController
class JsonApiRestfulController<T> extends RestfulController<T> {
JsonApiRestfulController(Class<T> c) {
super(c, false)
}
}
关于grails - Grails集成测试因 “Unsatisfied dependency expressed through constructor parameter”而失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54430493/
我想在我的单元测试中模拟一个遗留对象。这是构造函数: public Class LegacyClass{ public LegacyClass(Object... obj) {
此处说明https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Function函数对象实例的构造函数属性“指定创建对
有没有办法从子类中的构造函数分配在父类(super class)中声明的实例变量?我已经习惯使用 BUILD() 作为构造函数,但我想知道这是否是个好主意。 IE: use v6; clas
鉴于以下情况: type AStruct struct { m_Map map[int]bool } 在这种情况下,AStruct的实例在AStruct.m_Map初始化之前不能使用: m_M
我是 Android 新手,我正在尝试学习如何使用 Gson 解析 API 调用。我已经阅读了一些内容,我正在尝试遵循这个示例:http://www.javacodegeeks.com/2011/01
我正在阅读 this文章,我不知道下面这行是做什么的。即使我删除了这一行,我也看不出有什么不同。 this.constructor.prototype.constructor.apply(this,A
这个问题已经有答案了: JsonMappingException: No suitable constructor found for type [simple type, class ]: can
我正在处理我的第一个 Flutter 项目,我正在构建一个登录页面,我创建了一个变量来存储一个 TextFormFieldController,但我收到了上面的错误,因为我删除了构造函数。当我返回这个
假设我们有以下主要和次要构造函数: open class Animal(val name:String){ internal constructor(message:InputStream): t
为什么默认复制构造函数不调用 monster 的基构造函数,但是当我在 troll 中包含一个用户定义的复制构造函数时,它会调用父级(即: 怪物) 构造函数? 我认为它的工作原理如下:创建基础对象,然
这个问题在这里已经有了答案: Is there a difference between foo(void) and foo() in C++ or C? (4 个答案) 关闭 8 年前。 我注意到
我将 T4MVC 与 MVC2 一起使用。 我有以下构建 block : 一个简单的实体接口(interface),它定义了每个 POCO 实体必须有一个 long Id属性(property): p
以下代码返回一个错误: “构造函数调用必须是构造函数中的第一个语句。” 我不明白。我的代码中的构造函数是第一条语句。我究竟做错了什么? public class labelsAndIcons exte
我是 kotlin 的新手,对它包含的所有有用的语法糖和功能感到惊讶。 但是每当我声明一个构造函数时,我都必须独立地将我的所有字段设为私有(private)。 class Result(private
作为主题,相关代码为: #include class ABC { public: ABC() { std::cout<< "default con
在 Haxe 中,我创建了一个名为 的类。我的类 喜欢: class MyClass { var score: String; public function new (score:
不确定为什么会这样,尝试删除所有 new 实例,从 const ect 切换到 let。可以运行站点,但是当我通过 html 表单运行发布请求时,在“const user = new UserSche
我是 Javascript 的新手,我正在尝试深入挖掘并理解继承、构造函数和原型(prototype)链。所以,我创建了一个构造函数, var a = function(){this.integer=
我知道 JavaScript 中的函数有双重生命,第一个是函数(作为创建实例的第一类事物),第二个是普通对象。 但是我很惊讶地看到下面控制台的输出。 function A() { consol
这个问题在这里已经有了答案: Why can't I access a property of an integer with a single dot? (5 个答案) 关闭 5 年前。 为什么
我是一名优秀的程序员,十分优秀!