我有一个使用弹簧靴的系统。它使用休息。
我尝试使用此代码调用此系统的其中一项服务
#mainbody {
width:50%;
height: auto;
margin: 0 auto;
}
.slideshow {
width: 600px;
height: 400px;
margin: 0 auto;
margin-bottom: 30px;
overflow: hidden;
position: relative;
border: 1px solid red;
}
.slider {
font-family: "Arial", sans-serif;
text-align: center;
position: relative;
width: 600px;
overflow: hidden;
background: #1a1a1a;
margin: 0 auto;
color: white;
text-shadow: 1px 1px 1px #000;
border-radius: .3em;
margin-top: 30px;
}
.slideshow .slider-content {
position: absolute;
width: 100%;
height: 400px;
}
.slide-image {
width: 100%;
height: auto;
}
.animate-enter,
.animate-leave {
-webkit-transition: 1000ms cubic-bezier(.165, .84, .44, 1) all;
-moz-transition: 1000ms cubic-bezier(.165, .84, .44, 1) all;
-ms-transition: 1000ms cubic-bezier(.165, .84, .44, 1) all;
-o-transition: 1000ms cubic-bezier(.165, .84, .44, 1) all;
transition: 1000ms cubic-bezier(.165, .84, .44, 1) all;
}
.animate-enter {
margin-left: 100%;
}
.animate-enter.animate-enter-active {
margin-left: 0;
}
.animate-leave {
margin-left: 0;
}
.animate-leave.animate-leave-active {
margin-left: -100%;
}
我在这里发布了错误
答案 0 :(得分:0)
您提供给客户端的URI不包含主机部分。
应该是这样的吗?
restTemplate.getForObject("http://example.org/rest/client/card/", Boolean.class, vars);
如果要将RestTemplate
实例配置为始终以同一主机为目标,可以采用以下方式进行配置:
DefaultUriTemplateHandler uriTemplateHandler = new DefaultUriTemplateHandler();
uriTemplateHandler.setBaseUrl("http://example.org");
restTemplate. setUriTemplateHandler(uriTemplateHandler);