在纯Java中创建GET端点可以通过使用Java的Web框架来实现,比较常用的框架有Spring Boot和JavaEE(Java Enterprise Edition)。
无论选择使用Spring Boot还是JavaEE,以下是一个示例代码来创建一个简单的GET端点:
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@SpringBootApplication
public class MyApplication {
public static void main(String[] args) {
SpringApplication.run(MyApplication.class, args);
}
@GetMapping("/hello")
public String hello() {
return "Hello, World!";
}
}
上述代码使用了Spring Boot框架,创建了一个名为hello
的GET端点,当访问/hello
路径时,会返回字符串"Hello, World!"。
注意:以上代码仅为示例,实际应用中可能需要根据具体需求进行更复杂的处理和业务逻辑。
领取专属 10元无门槛券
手把手带您无忧上云