我是靠谱客的博主 鲤鱼面包,最近开发中收集的这篇文章主要介绍Eclipse Springboot入门(二)——外部web访问接口,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

Eclipse Springboot入门(二)——外部web访问接口

接Eclipse Springboot入门(一)

当在测试类里面测试通过以后便可以写控制类进行外部web访问
控制controller模块(UserList.java)

package com.example.demo.controller;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import com.example.demo.entity.User;
import com.example.demo.mapper.UserMapper;
@RestController
@RequestMapping("/user")
public class UserList {
	@Autowired
	private UserMapper userMapper;
	@GetMapping("/get")
	public List<User> findAll() {
		List<User> users = userMapper.selectList(null);
		return users;
	}
}

在application.yml中将服务器端口设置为8181

在这里插入图片描述

运行启动类
在这里插入图片描述

外部web进行测试,

测试结果
附.前后端进行连接中的问题(跨域问题)
在springboot中的解决方法
创建一个config模块

package com.example.demo.config;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.CorsRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
@Configuration
public class CrosConfig implements WebMvcConfigurer{
	@Override
	public void addCorsMappings(CorsRegistry registry) {
		registry.addMapping("/**")
		        .allowedOrigins("*")
		        .allowedMethods("GET","HEAD","POST","PUT","DELETE","OPTIONS")
		        .allowCredentials(true)
                .maxAge(3600)
                .allowedHeaders("*");
	}
}

Eclipse Springboot入门(三)——mybatis plus操作数据库

Eclipse Springboot入门(四)——Springboot部署到云服务器

最后

以上就是鲤鱼面包为你收集整理的Eclipse Springboot入门(二)——外部web访问接口的全部内容,希望文章能够帮你解决Eclipse Springboot入门(二)——外部web访问接口所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(44)

评论列表共有 0 条评论

立即
投稿
返回
顶部