All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ai.platon.pulsar.rest.api.controller.W3PageController.kt Maven / Gradle / Ivy

The newest version!
package ai.platon.pulsar.rest.api.controller

import ai.platon.pulsar.rest.api.service.LoadService
import org.springframework.beans.factory.annotation.Autowired
import org.springframework.web.bind.annotation.*

/**
 * The controller to handle www resources
 * */
@RestController
@CrossOrigin
@RequestMapping("w3page")
class W3PageController {

    @Autowired
    lateinit var loadService: LoadService

    @GetMapping
    fun loadContent(@RequestParam url: String): String {
        return loadService.load(url).contentAsString
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy