Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to write java web and interface in spring boot

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

This article mainly explains "how to write java web and interface in spring boot". Interested friends may wish to have a look at it. The method introduced in this paper is simple, fast and practical. Let's let the editor take you to learn how to write java web and interface in spring boot.

Process:

Springboot development process

Another is the dependence of mybatis.

Test interface

@ RestControllerpublic class Hello {@ RequestMapping ("/ hello") public String hello () {return "helloworld";}}

* * .yml file configuration

Spring: datasource: driver-class-name: com.mysql.cj.jdbc.Driver url: jdbc:mysql://localhost:3306/student?useUnicode=true&useSSL=false&characterEncoding=utf8&serverTimezone=Asia/Shanghai username: root password: 123456mybatis: mapper-locations: classpath:mapper/*.xml

Database fields:

Pojo

@ Datapublic class User {private int id; private String name; private int age; private String email; *

The rest is done by the get and set methods themselves.

Mapper

@ Mapperpublic interface UserMapper {List findAll ();}

If it is springboot, you can use @ MapperScan ("the full name of the package where the mapper interface resides") in the startup class, instead of annotating @ Mapper in the Mapper interface one by one. The @ Mapper annotation is the mapper interface that identifies him as mybatis. It automatically generates a dynamic proxy class from the interface annotated with @ Mapper.

Let springboot know your mapper layer, or add MapperScan ("full name of the package where the mapper layer resides") to the startup class.

Mapper.xml

SELECT * FROM user

Controller

@ RestControllerpublic class UserController {@ Autowired / / instantiate userService private UserService userService; @ RequestMapping ("/ user") public List getUser () {return userService.findAll ();}}

Be sure to inject userService into the container

The data was successfully obtained

At this point, I believe you have a deeper understanding of "how to write java web and interface in spring boot". You might as well do it in practice. Here is the website, more related content can enter the relevant channels to inquire, follow us, continue to learn!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report