服务提供者的项目:
本例子是把前面springboot的mybatis例子,几乎不变的拿过来就可以运行了。
package com;
import java.io.IOException;
import javax.annotation.Resource;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
import com.mapper.RegisterMapper;
/*EnableEurekaClient的意思是让你的应用成为eureca的客户,你在用它,你是他的客户,你没在用别人*/
@SpringBootApplication
@EnableEurekaClient
@RestController
@MapperScan(value = "com.mapper")
@ComponentScan({"com"})
public class Application {
@RequestMapping("/")
public String home() {
return "Hello world 马克-to-win";
}
更多请看下节:https://blog.youkuaiyun.com/qq_44639795/article/details/96114146
本文介绍了一个简单的SpringBoot结合MyBatis的服务提供者项目示例,演示如何使用@EnableEurekaClient将应用注册为Eureka客户端,并通过@RestController实现RESTful API。此外,还展示了如何使用@MapperScan注解来扫描MyBatis映射器。

被折叠的 条评论
为什么被折叠?



