Receiving ServletContext Into A Plain Java Class?












-1















I'm just starting out learning some JSP and servlets today and was wondering if it's possible to get the session's ServletContext as a variable and pass it to a plain Java class? If so, how may I do that?



My simple servlet:



public class myServlet extends HttpServlet {

protected void doPost(HttpServletRequest request, HttpServletResponse response) {
HttpSession session = request.getSession(true);

//How do I receive the servlet context below in a plain Java class?
ServletContext sc = session.getServletContext();
request.setAttribute("sc", sc);
}
}


My Java class is just a plain one:



public class myClass extends HttpServlet {

//I want to be able to use the ServletContext as a variable that is passed from myServlet class into this one.

}


In myClass I want to be able to use it to get the real path file of a file within my project:



ServletContext sc
String path = sc.getRealPath(...)



EDIT: Can I do something like this in myServlet servlet?:



String realPath = sc.getRealPath("/WEB-INF/myFile");



But then how do I pass this realPath variable into myClass so I can use it there instead of in myServlet?










share|improve this question

























  • why are your extending public class myClass extends HttpServlet ?

    – Scary Wombat
    Nov 15 '18 at 4:14











  • The guy tutoring me told me to put it. When I asked him, he didn't really have an answer. Like I said, I just started learning servlets and JSP today

    – James McTyre
    Nov 15 '18 at 4:16











  • maybe a xy problem - what are you really trying to achieve?

    – Scary Wombat
    Nov 15 '18 at 4:18
















-1















I'm just starting out learning some JSP and servlets today and was wondering if it's possible to get the session's ServletContext as a variable and pass it to a plain Java class? If so, how may I do that?



My simple servlet:



public class myServlet extends HttpServlet {

protected void doPost(HttpServletRequest request, HttpServletResponse response) {
HttpSession session = request.getSession(true);

//How do I receive the servlet context below in a plain Java class?
ServletContext sc = session.getServletContext();
request.setAttribute("sc", sc);
}
}


My Java class is just a plain one:



public class myClass extends HttpServlet {

//I want to be able to use the ServletContext as a variable that is passed from myServlet class into this one.

}


In myClass I want to be able to use it to get the real path file of a file within my project:



ServletContext sc
String path = sc.getRealPath(...)



EDIT: Can I do something like this in myServlet servlet?:



String realPath = sc.getRealPath("/WEB-INF/myFile");



But then how do I pass this realPath variable into myClass so I can use it there instead of in myServlet?










share|improve this question

























  • why are your extending public class myClass extends HttpServlet ?

    – Scary Wombat
    Nov 15 '18 at 4:14











  • The guy tutoring me told me to put it. When I asked him, he didn't really have an answer. Like I said, I just started learning servlets and JSP today

    – James McTyre
    Nov 15 '18 at 4:16











  • maybe a xy problem - what are you really trying to achieve?

    – Scary Wombat
    Nov 15 '18 at 4:18














-1












-1








-1








I'm just starting out learning some JSP and servlets today and was wondering if it's possible to get the session's ServletContext as a variable and pass it to a plain Java class? If so, how may I do that?



My simple servlet:



public class myServlet extends HttpServlet {

protected void doPost(HttpServletRequest request, HttpServletResponse response) {
HttpSession session = request.getSession(true);

//How do I receive the servlet context below in a plain Java class?
ServletContext sc = session.getServletContext();
request.setAttribute("sc", sc);
}
}


My Java class is just a plain one:



public class myClass extends HttpServlet {

//I want to be able to use the ServletContext as a variable that is passed from myServlet class into this one.

}


In myClass I want to be able to use it to get the real path file of a file within my project:



ServletContext sc
String path = sc.getRealPath(...)



EDIT: Can I do something like this in myServlet servlet?:



String realPath = sc.getRealPath("/WEB-INF/myFile");



But then how do I pass this realPath variable into myClass so I can use it there instead of in myServlet?










share|improve this question
















I'm just starting out learning some JSP and servlets today and was wondering if it's possible to get the session's ServletContext as a variable and pass it to a plain Java class? If so, how may I do that?



My simple servlet:



public class myServlet extends HttpServlet {

protected void doPost(HttpServletRequest request, HttpServletResponse response) {
HttpSession session = request.getSession(true);

//How do I receive the servlet context below in a plain Java class?
ServletContext sc = session.getServletContext();
request.setAttribute("sc", sc);
}
}


My Java class is just a plain one:



public class myClass extends HttpServlet {

//I want to be able to use the ServletContext as a variable that is passed from myServlet class into this one.

}


In myClass I want to be able to use it to get the real path file of a file within my project:



ServletContext sc
String path = sc.getRealPath(...)



EDIT: Can I do something like this in myServlet servlet?:



String realPath = sc.getRealPath("/WEB-INF/myFile");



But then how do I pass this realPath variable into myClass so I can use it there instead of in myServlet?







java jsp session servlets realpath






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 15 '18 at 4:09







James McTyre

















asked Nov 15 '18 at 4:01









James McTyreJames McTyre

535




535













  • why are your extending public class myClass extends HttpServlet ?

    – Scary Wombat
    Nov 15 '18 at 4:14











  • The guy tutoring me told me to put it. When I asked him, he didn't really have an answer. Like I said, I just started learning servlets and JSP today

    – James McTyre
    Nov 15 '18 at 4:16











  • maybe a xy problem - what are you really trying to achieve?

    – Scary Wombat
    Nov 15 '18 at 4:18



















  • why are your extending public class myClass extends HttpServlet ?

    – Scary Wombat
    Nov 15 '18 at 4:14











  • The guy tutoring me told me to put it. When I asked him, he didn't really have an answer. Like I said, I just started learning servlets and JSP today

    – James McTyre
    Nov 15 '18 at 4:16











  • maybe a xy problem - what are you really trying to achieve?

    – Scary Wombat
    Nov 15 '18 at 4:18

















why are your extending public class myClass extends HttpServlet ?

– Scary Wombat
Nov 15 '18 at 4:14





why are your extending public class myClass extends HttpServlet ?

– Scary Wombat
Nov 15 '18 at 4:14













The guy tutoring me told me to put it. When I asked him, he didn't really have an answer. Like I said, I just started learning servlets and JSP today

– James McTyre
Nov 15 '18 at 4:16





The guy tutoring me told me to put it. When I asked him, he didn't really have an answer. Like I said, I just started learning servlets and JSP today

– James McTyre
Nov 15 '18 at 4:16













maybe a xy problem - what are you really trying to achieve?

– Scary Wombat
Nov 15 '18 at 4:18





maybe a xy problem - what are you really trying to achieve?

– Scary Wombat
Nov 15 '18 at 4:18












1 Answer
1






active

oldest

votes


















0
















  1. create a class



    public class MyClass {....}




  2. Have a variable of type ServletContext



    private ServletContext myContext;




  3. Set value through Constructor or setter



    void setContext (ServletContext sc) {myContext = sc;}




  4. Use it



    myContext.get....("xxx");




Edit



You can use this class from your servlet as



doPost (....) {

....
ServletContext sc = session.getServletContext();
MyClass mc = new MyClass ();
mc.setContext (sc);

// now the context is **in** the MyClass instance - how you use it is up to you.





share|improve this answer


























  • If I put my setter void setcontext(...){...} in myClass, where is the sc coming from?

    – James McTyre
    Nov 15 '18 at 4:26











  • You construct and call this code from your Servlet

    – Scary Wombat
    Nov 15 '18 at 4:28











  • I should code my setter and getter for myContext in myServlet?

    – James McTyre
    Nov 15 '18 at 4:30











  • Huh? Which step 1-4 indicates that you should do that?

    – Scary Wombat
    Nov 15 '18 at 4:34











  • Your reply said so.

    – James McTyre
    Nov 15 '18 at 4:36











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%2f53312255%2freceiving-servletcontext-into-a-plain-java-class%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
















  1. create a class



    public class MyClass {....}




  2. Have a variable of type ServletContext



    private ServletContext myContext;




  3. Set value through Constructor or setter



    void setContext (ServletContext sc) {myContext = sc;}




  4. Use it



    myContext.get....("xxx");




Edit



You can use this class from your servlet as



doPost (....) {

....
ServletContext sc = session.getServletContext();
MyClass mc = new MyClass ();
mc.setContext (sc);

// now the context is **in** the MyClass instance - how you use it is up to you.





share|improve this answer


























  • If I put my setter void setcontext(...){...} in myClass, where is the sc coming from?

    – James McTyre
    Nov 15 '18 at 4:26











  • You construct and call this code from your Servlet

    – Scary Wombat
    Nov 15 '18 at 4:28











  • I should code my setter and getter for myContext in myServlet?

    – James McTyre
    Nov 15 '18 at 4:30











  • Huh? Which step 1-4 indicates that you should do that?

    – Scary Wombat
    Nov 15 '18 at 4:34











  • Your reply said so.

    – James McTyre
    Nov 15 '18 at 4:36
















0
















  1. create a class



    public class MyClass {....}




  2. Have a variable of type ServletContext



    private ServletContext myContext;




  3. Set value through Constructor or setter



    void setContext (ServletContext sc) {myContext = sc;}




  4. Use it



    myContext.get....("xxx");




Edit



You can use this class from your servlet as



doPost (....) {

....
ServletContext sc = session.getServletContext();
MyClass mc = new MyClass ();
mc.setContext (sc);

// now the context is **in** the MyClass instance - how you use it is up to you.





share|improve this answer


























  • If I put my setter void setcontext(...){...} in myClass, where is the sc coming from?

    – James McTyre
    Nov 15 '18 at 4:26











  • You construct and call this code from your Servlet

    – Scary Wombat
    Nov 15 '18 at 4:28











  • I should code my setter and getter for myContext in myServlet?

    – James McTyre
    Nov 15 '18 at 4:30











  • Huh? Which step 1-4 indicates that you should do that?

    – Scary Wombat
    Nov 15 '18 at 4:34











  • Your reply said so.

    – James McTyre
    Nov 15 '18 at 4:36














0












0








0









  1. create a class



    public class MyClass {....}




  2. Have a variable of type ServletContext



    private ServletContext myContext;




  3. Set value through Constructor or setter



    void setContext (ServletContext sc) {myContext = sc;}




  4. Use it



    myContext.get....("xxx");




Edit



You can use this class from your servlet as



doPost (....) {

....
ServletContext sc = session.getServletContext();
MyClass mc = new MyClass ();
mc.setContext (sc);

// now the context is **in** the MyClass instance - how you use it is up to you.





share|improve this answer

















  1. create a class



    public class MyClass {....}




  2. Have a variable of type ServletContext



    private ServletContext myContext;




  3. Set value through Constructor or setter



    void setContext (ServletContext sc) {myContext = sc;}




  4. Use it



    myContext.get....("xxx");




Edit



You can use this class from your servlet as



doPost (....) {

....
ServletContext sc = session.getServletContext();
MyClass mc = new MyClass ();
mc.setContext (sc);

// now the context is **in** the MyClass instance - how you use it is up to you.






share|improve this answer














share|improve this answer



share|improve this answer








edited Nov 15 '18 at 6:26









JimHawkins

2,98482241




2,98482241










answered Nov 15 '18 at 4:17









Scary WombatScary Wombat

35.3k32252




35.3k32252













  • If I put my setter void setcontext(...){...} in myClass, where is the sc coming from?

    – James McTyre
    Nov 15 '18 at 4:26











  • You construct and call this code from your Servlet

    – Scary Wombat
    Nov 15 '18 at 4:28











  • I should code my setter and getter for myContext in myServlet?

    – James McTyre
    Nov 15 '18 at 4:30











  • Huh? Which step 1-4 indicates that you should do that?

    – Scary Wombat
    Nov 15 '18 at 4:34











  • Your reply said so.

    – James McTyre
    Nov 15 '18 at 4:36



















  • If I put my setter void setcontext(...){...} in myClass, where is the sc coming from?

    – James McTyre
    Nov 15 '18 at 4:26











  • You construct and call this code from your Servlet

    – Scary Wombat
    Nov 15 '18 at 4:28











  • I should code my setter and getter for myContext in myServlet?

    – James McTyre
    Nov 15 '18 at 4:30











  • Huh? Which step 1-4 indicates that you should do that?

    – Scary Wombat
    Nov 15 '18 at 4:34











  • Your reply said so.

    – James McTyre
    Nov 15 '18 at 4:36

















If I put my setter void setcontext(...){...} in myClass, where is the sc coming from?

– James McTyre
Nov 15 '18 at 4:26





If I put my setter void setcontext(...){...} in myClass, where is the sc coming from?

– James McTyre
Nov 15 '18 at 4:26













You construct and call this code from your Servlet

– Scary Wombat
Nov 15 '18 at 4:28





You construct and call this code from your Servlet

– Scary Wombat
Nov 15 '18 at 4:28













I should code my setter and getter for myContext in myServlet?

– James McTyre
Nov 15 '18 at 4:30





I should code my setter and getter for myContext in myServlet?

– James McTyre
Nov 15 '18 at 4:30













Huh? Which step 1-4 indicates that you should do that?

– Scary Wombat
Nov 15 '18 at 4:34





Huh? Which step 1-4 indicates that you should do that?

– Scary Wombat
Nov 15 '18 at 4:34













Your reply said so.

– James McTyre
Nov 15 '18 at 4:36





Your reply said so.

– James McTyre
Nov 15 '18 at 4:36




















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%2f53312255%2freceiving-servletcontext-into-a-plain-java-class%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

Xamarin.iOS Cant Deploy on Iphone

Glorious Revolution

Dulmage-Mendelsohn matrix decomposition in Python