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部署到云服务器

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值