Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8584913
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T21:53:09+00:00 2026-06-11T21:53:09+00:00

What is the proper way to secure the @RequestBody with Spring Security? For example:

  • 0

What is the proper way to secure the @RequestBody with Spring Security?

For example: A User can have multiple Blogs and each Blog can have multiple Entrys. A user goes to save an entry to a certain blog and the request would come in like this:

@RequestMapping(value="/api/entry", method=RequestMethod.POST)
@ResponseBody
public Entry save(@Valid @RequestBody Entry entry) {
    this.entryService.save(entry);
    return entry;
}

Now, the incoming entry has a Blog, the user could have doctored up the request and chosen someone else’s blog, effectively posting the entry to their blog. Though I could catch this in validation (query the persistence layer to verify that the Blog belongs to the logged in User) I feel that this should be handled by Spring Security. If so, how do I go about doing this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T21:53:11+00:00Added an answer on June 11, 2026 at 9:53 pm

    We had this kind of situation.

    Here is the two solution. I did not like much

    @RequestMapping(value="/api/entry", method=RequestMethod.POST)
    @ResponseBody
    @PreAuthorize("#entry.author.name == principal.name)"
    public Entry save(@Valid @RequestBody Entry entry, Principal principal) {
        this.entryService.save(entry);
        return entry;
    } 
    

    or

    @RequestMapping(value="/api/entry", method=RequestMethod.POST)
        @ResponseBody
        @PreAuthorize("Decision.isOK(entry, principal)")
        public Entry save(@Valid @RequestBody Entry entry, Principal principal) {
            this.entryService.save(entry);
            return entry;
        }
    

    //In that case Spring will call your static isOk() method from Decision class. It should return boolean.

    Spring injects Principal principal authorized object for the method, you do not have to worry about it.
    Enable @PreAuthorize annotation with

    <security:global-method-security pre-post-annotations="enabled" />

    Second Using Aspect. Create aspect.

    @Retention(RetentionPolicy.RUNTIME)
    @Target(ElementType.METHOD)
    public @interface Protector {
    }
    
    @Aspect
    @Component
    public class MyAspect {
       @Before("@annotation(com.xyz.Protector)")
       public void before(JoinPoint joinPoint) throws Throwable {
            //u can get method object from joinPoint object, 
            Method method = ((MethodSignature)joinPoint.getMethodSignature()).getMethod();
            //As long as you have Method object you can read the parameter objects (Entry and Principal) with reflection. 
            //So Compare here: If entry.getOwner().getId().equal(principal.getName()) blah blah blah  
        }
    }
    
    @RequestMapping(value="/api/entry", method=RequestMethod.POST)
    @ResponseBody
    @Protector
    public Entry save(@Valid @RequestBody Entry entry, Principal principal) {
        this.entryService.save(entry);
        return entry;
    } 
    

    If you have aspect you can have more owning on runtime

    Also refer to this ulr

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

What would be the proper way to style multiple h6 headings differently on one
What is the proper way to manage threads working in the background? For example,
What's the proper way to encode untrusted data for HTML attribute context? For example:
What is the proper way to drop a table using hook_update_N? I can't find
I was looking a proper way to implment a ScaleAnimation. My purpose is to
What's the proper way to add a literal text value from a field to
Is there a proper way, equation or technique in general to say, My web
QUESTION: What is the proper way to use .get() in conjunction with .one() (or
What is the proper way to do the following in clojure? (ns todo.test.models.task (:use
Is there a proper way yet to unit test views with the aspx view

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.