作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
为什么grails域验证会拒绝http://wctest.jenkins:8080/CRMGateway之类的URL。虽然提供的网址在结构上是正确的,是否要成为没有端口的网址?
以下是我拥有的域
class Configuration{
String username
String password
String gatewayURL
//constraints
static constraints = {
gatewayUrl nullable: true, blank: false, url: true
}
}
Configuration config = new configuration(username:'abc',password:new
SHA256("w3lc0m3"),"http://wctest.jenkins:8080/CRMGateway")
config.save flush:true
最佳答案
这是因为默认的URL验证拒绝wctest.jenkins
。
但是它接受wctest.com
或wctest.ch
。
如果限制太严格,则需要自定义验证(如http://java.dzone.com/articles/grails-goodness-add-extra或使用Grails自定义验证)。
关于grails - 为什么Grails域验证会拒绝类似http://wctest.jenkins:8080/CRMGateway的网址,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27856258/
为什么grails域验证会拒绝http://wctest.jenkins:8080/CRMGateway之类的URL。虽然提供的网址在结构上是正确的,是否要成为没有端口的网址? 以下是我拥有的域 cl
我是一名优秀的程序员,十分优秀!