Re: ./mvnw spring-boot:run struts equivalent

2020-06-06 Thread Zahid Rahman
k > > ¯_(ツ)_/¯ > > ♡۶Java♡۶RMI ♡۶ > > > > > > On Fri, 29 May 2020 at 02:58, Dave Newton wrote: > > > > > No, you create a web app with it. The S2 archtypes *are* runnable, > or you > > > can create a web app in the typical way, or you can follo

Re: ./mvnw spring-boot:run struts equivalent

2020-05-30 Thread rkrk
w-to-create-a-struts2-web-application.html > > . > > > > > > On Thu, May 28, 2020 at 21:51 Zahid Rahman wrote: > > > > > Hi, > > > I git cloned https://github.com/apache/struts this. > > > then I ran ./mvnw clean package install. > > &g

Re: ./mvnw spring-boot:run struts equivalent

2020-05-30 Thread James Chaplin
ted/how-to-create-a-struts2-web-application.html > > . > > > > > > On Thu, May 28, 2020 at 21:51 Zahid Rahman wrote: > > > > > Hi, > > > I git cloned https://github.com/apache/struts this. > > > then I ran ./mvnw clean package install. > &

Re: ./mvnw spring-boot:run struts equivalent

2020-05-29 Thread Zahid Rahman
://struts.apache.org/getting-started/how-to-create-a-struts2-web-application.html > . > > > On Thu, May 28, 2020 at 21:51 Zahid Rahman wrote: > > > Hi, > > I git cloned https://github.com/apache/struts this. > > then I ran ./mvnw clean package install. > > &

Re: ./mvnw spring-boot:run struts equivalent

2020-05-28 Thread Dave Newton
Zahid Rahman wrote: > Hi, > I git cloned https://github.com/apache/struts this. > then I ran ./mvnw clean package install. > > is there a struts equivalent *./mvnw spring-boot:run* to run it ? > I tried ./mvnw jetty:run then didn't work. > > > Back

./mvnw spring-boot:run struts equivalent

2020-05-28 Thread Zahid Rahman
Hi, I git cloned https://github.com/apache/struts this. then I ran ./mvnw clean package install. is there a struts equivalent *./mvnw spring-boot:run* to run it ? I tried ./mvnw jetty:run then didn't work. Backbutton.co.uk ¯\_(ツ)_/¯ <http://www.backbutton.co.uk>

Re: Struts Equivalent

2006-10-10 Thread Antonio Petrelli
Chetan Pandey ha scritto: So is their a way we can say: session.removeAttribute("var1"); using No, you have to use tag of JSTL. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECT

RE: Struts Equivalent

2006-10-10 Thread Chetan Pandey
So is their a way we can say: session.removeAttribute("var1"); using Thanks. Chetan -Original Message- From: Antonio Petrelli [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 10, 2006 7:36 PM To: Struts Users Mailing List Subject: Re: Struts Equivalent Chetan Pandey

Re: Struts Equivalent

2006-10-10 Thread Antonio Petrelli
Chetan Pandey ha scritto: For the following Scriptlet: <%session.setAttribute("var1",null); %> Is the following equivalent: NO! session.setAttribute("var1", null); is equivalent to session.removeAttribute("var1"); is equivalent to session.setAttribute("var1", ""); --

Struts Equivalent

2006-10-10 Thread Chetan Pandey
For the following Scriptlet: <%session.setAttribute("var1",null); %> Is the following equivalent: Thanks and Regards. Chetan