Grails app在启动时以--debug-forked模式暂停。 我正在使用--debug-fork参数运行应用程序,但它会暂停并等待,直到调试器连接到它,然后调试器断开连接,并且应用程序再次等待调试器。当调试器第二次连接时 - 应用程序继续引导。 如何将syspend = y参数传递给ForkedGrailsProcessConfig以避免这种恼人的行为?
我在IntelliJ Idea 14中使用grails 2.4.4。
答案 0 :(得分:1)
我自己没试过,但是来自
http://naleid.com/blog/2014/11/10/debugging-grails-forked-mode
你应该能够使用
运行它package main
import(
"fmt"
"reflect"
)
type Foo struct {
Bar string
Baz int
}
var Foo_Bar = reflect.TypeOf(Foo{}).Field(0).Name
var Foo_Baz = reflect.TypeOf(Foo{}).Field(1).Name
func main(){
fmt.Println(Foo_Bar, Foo_Baz)
}