欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Spring Boot 实现前后端分离

程序员文章站 2022-07-10 12:44:14
...

1.Spring Boot + CXF + WebService在第一个博客中写过连接在下边

https://blog.csdn.net/qq_43301731/article/details/103148113

2.本次直接写分离的部分

在上次的demo中,要做前后端分离,就不需要用到WebServiceClient这个类了

3.在新打开一个工作空间 注意:spring Boot 的运行不要关闭

新建一个工程–>右键—>new—>other—>
Spring Boot 实现前后端分离

选择Web Service Client

Spring Boot 实现前后端分离

然后将上一篇博客中的wsdl填写在文本框中—>finish

Spring Boot 实现前后端分离

在新建的工程中我们就能看到导过来的数据,然后创建一个测试类

package com.example.demo.service;

import java.rmi.RemoteException;

public class TextDemo01{
	public static void main(String[] args)throws RemoteException {
		String enpoint = "http://localhost:8080/service/user?wsdl";
		UserServiceProxy us = new UserServiceProxy(enpoint);
		String s = us.getUser("1").getUsername();
		
		System.out.println(s);
	}
}

执行,我们就能看到输出了想要的数据,证明我们收到了wsdl传输的数据

相关标签: Spring Boot