I am getting a compile time error when trying to implement the hateos , It is not showing me the methodOn methodIs there a means to set the host & port for the Spring HATEOAS `ControllerLinkBuilder`?Spring HATEOAS Resource assembler is not instantiated in unit testCuries in Spring HATEOASHow to create link pointing to Spring controller action that returns voidNaming Spring page keys in HATEOAS _embedded PagedResourceSpring Resource Assembler throwing NoSuchBeanDefinitionExceptionspring hateoas linkTo method with withSelfRel() not working when spring controller method mapped with multiple path valuesQuery string encapsulated in a single object does not generate a valid Spring HATEOAS linkSpring-boot + REST + HATEOAS + HALJava 11 + Spring Boot + HATEOAS + JAXBException: Class *** nor any of its super class is known to this context

Was there ever any real use for a 6800-based Apple I?

Does Lawful Interception of 4G / the proposed 5G provide a back door for hackers as well?

Drawing lines to nearest point

Create a list of all possible Boolean configurations of three constraints

Make all the squares explode

What is the relation between semi-supervised self-supervised visual representation learning?

Why in a Ethernet LAN, a packet sniffer can obtain all packets sent over the LAN?

Is there ever any indication in the MCU as to how Spider-Man got his powers?

What happens if a creature that would fight isn't on the battlefield anymore?

Python Pandas Expand a Column of List of Lists to Two New Column

Ex-manager wants to stay in touch, I don't want to

Why is “Ich wusste, dass aus dir mal was wird” grammitally correct?

What does the expression "right on the tip of my tongue" mean?

How does Howard Stark know this?

How can I answer high-school writing prompts without sounding weird and fake?

What are the implications of the new alleged key recovery attack preprint on SIMON?

Can I use my laptop, which says 100-240V, in the USA?

What's the difference between a Bunsen burner and a gas stove?

How does noise-cancellation work in Mac laptops?

How are Core iX names like Core i5, i7 related to Haswell, Ivy Bridge?

Why was the Ancient One so hesitant to teach Dr. Strange the art of sorcery?

Why was Endgame Thanos so different than Infinity War Thanos?

Smallest Guaranteed hash collision cycle length

How can this pool heater gas line be disconnected?



I am getting a compile time error when trying to implement the hateos , It is not showing me the methodOn method


Is there a means to set the host & port for the Spring HATEOAS `ControllerLinkBuilder`?Spring HATEOAS Resource assembler is not instantiated in unit testCuries in Spring HATEOASHow to create link pointing to Spring controller action that returns voidNaming Spring page keys in HATEOAS _embedded PagedResourceSpring Resource Assembler throwing NoSuchBeanDefinitionExceptionspring hateoas linkTo method with withSelfRel() not working when spring controller method mapped with multiple path valuesQuery string encapsulated in a single object does not generate a valid Spring HATEOAS linkSpring-boot + REST + HATEOAS + HALJava 11 + Spring Boot + HATEOAS + JAXBException: Class *** nor any of its super class is known to this context






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








2















I am trying to implement the Hateoas using spring boot.
In my UserController class i have used the below code



@GetMapping("/users/id")
public Resource<User> retrieveUser(@PathVariable int id) {
User user = service.findOne(id);
Resource<User> resource = new Resource<User>(user);
ControllerLinkBuilder linkTo=linkTo(methodOn(this.getClass()).retrieveAllUsers());


I am getting a compile time error on line where i am using the - methodOn().
Compiler is not able to find the methodOn using the controller link builder.



I have used the below import to implement hateoas



import org.springframework.hateoas.mvc.ControllerLinkBuilder.*;










share|improve this question
























  • Do you have the same issue with linkTo?

    – mle
    Mar 23 at 15:12

















2















I am trying to implement the Hateoas using spring boot.
In my UserController class i have used the below code



@GetMapping("/users/id")
public Resource<User> retrieveUser(@PathVariable int id) {
User user = service.findOne(id);
Resource<User> resource = new Resource<User>(user);
ControllerLinkBuilder linkTo=linkTo(methodOn(this.getClass()).retrieveAllUsers());


I am getting a compile time error on line where i am using the - methodOn().
Compiler is not able to find the methodOn using the controller link builder.



I have used the below import to implement hateoas



import org.springframework.hateoas.mvc.ControllerLinkBuilder.*;










share|improve this question
























  • Do you have the same issue with linkTo?

    – mle
    Mar 23 at 15:12













2












2








2








I am trying to implement the Hateoas using spring boot.
In my UserController class i have used the below code



@GetMapping("/users/id")
public Resource<User> retrieveUser(@PathVariable int id) {
User user = service.findOne(id);
Resource<User> resource = new Resource<User>(user);
ControllerLinkBuilder linkTo=linkTo(methodOn(this.getClass()).retrieveAllUsers());


I am getting a compile time error on line where i am using the - methodOn().
Compiler is not able to find the methodOn using the controller link builder.



I have used the below import to implement hateoas



import org.springframework.hateoas.mvc.ControllerLinkBuilder.*;










share|improve this question
















I am trying to implement the Hateoas using spring boot.
In my UserController class i have used the below code



@GetMapping("/users/id")
public Resource<User> retrieveUser(@PathVariable int id) {
User user = service.findOne(id);
Resource<User> resource = new Resource<User>(user);
ControllerLinkBuilder linkTo=linkTo(methodOn(this.getClass()).retrieveAllUsers());


I am getting a compile time error on line where i am using the - methodOn().
Compiler is not able to find the methodOn using the controller link builder.



I have used the below import to implement hateoas



import org.springframework.hateoas.mvc.ControllerLinkBuilder.*;







spring-boot spring-hateoas






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 23 at 17:26









Misantorp

8241211




8241211










asked Mar 23 at 11:55









ankit kansalankit kansal

112




112












  • Do you have the same issue with linkTo?

    – mle
    Mar 23 at 15:12

















  • Do you have the same issue with linkTo?

    – mle
    Mar 23 at 15:12
















Do you have the same issue with linkTo?

– mle
Mar 23 at 15:12





Do you have the same issue with linkTo?

– mle
Mar 23 at 15:12












1 Answer
1






active

oldest

votes


















0














Methods you are using here are static, so to use them you need access using class reference unless you import them using static imports. See more details here






share|improve this answer























    Your Answer






    StackExchange.ifUsing("editor", function ()
    StackExchange.using("externalEditor", function ()
    StackExchange.using("snippets", function ()
    StackExchange.snippets.init();
    );
    );
    , "code-snippets");

    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "1"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55313462%2fi-am-getting-a-compile-time-error-when-trying-to-implement-the-hateos-it-is-no%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    Methods you are using here are static, so to use them you need access using class reference unless you import them using static imports. See more details here






    share|improve this answer



























      0














      Methods you are using here are static, so to use them you need access using class reference unless you import them using static imports. See more details here






      share|improve this answer

























        0












        0








        0







        Methods you are using here are static, so to use them you need access using class reference unless you import them using static imports. See more details here






        share|improve this answer













        Methods you are using here are static, so to use them you need access using class reference unless you import them using static imports. See more details here







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Mar 25 at 0:27









        ravinikamravinikam

        1,72252124




        1,72252124





























            draft saved

            draft discarded
















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55313462%2fi-am-getting-a-compile-time-error-when-trying-to-implement-the-hateos-it-is-no%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

            Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

            Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript