Problem in reflecting changes made on a JSP File


 
Thread Tools Search this Thread
Top Forums Programming Problem in reflecting changes made on a JSP File
# 1  
Old 04-06-2009
Problem in reflecting changes made on a JSP File

I make some changes in a JSP file but the changes do not reflect on tomcat server. In my server.xml 'reloadable' paramtere is set to true. I even treid restarting the server. The changes still not reflect.

The changes do reflect in a day or two. am not sure why this is happening. Shall appreciate any help.
# 2  
Old 04-06-2009
sounds like you got a client cache in your browser.

try follows:
Code:
<meta http-equiv="Expires" content="0">
<meta http-equiv="Cache-control" content="no-cache">
<meta http-equiv="Pragma" content="no-cache">

# 3  
Old 04-07-2009
hey blfO thanks for your help. I have one trivial question. Where should I paste this code?
# 4  
Old 04-07-2009
hey blfO..I pasted the code you suggested in my JSP but the chamges still dont reflect. Am i missing something?
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

How do I add a log file path to a vi file to monitor all the changes made to the file?

I'm curious to know how do I add an empty log file (test1.log) to an existing text file to monitor all the changes made to a.txt. Is this expression export PATH=$PATH:/home/test1.log right to be added to the text file a.txt? (5 Replies)
Discussion started by: TestKing
5 Replies

2. Linux

Umount is not reflecting in losetup.

Hi, initially i will mount a image using loop device using below command mount -n -o loop,noatime,ro -t squashfs /mnt/fsh/bt.img /opt/app/test then "mount" reflects with below /dev/loop0 on /opt/app/test type squashfs (ro,noatime) i will then umount using below commnd, umount is... (0 Replies)
Discussion started by: successlin
0 Replies

3. UNIX for Dummies Questions & Answers

Check the changes made to file in vi

Hi, I use vi editor in Unix. Is there any way if we can know that what change was made to the file opened in vi before quitting? As i opened a huge file made some changes yesterday and didnt save it. Today when i was quitting the vi , i came to know that some changes are made(as i got... (6 Replies)
Discussion started by: kailash19
6 Replies

4. Shell Programming and Scripting

simple jsp problem.

I have my jsp page located at /install/apache-tomcat-5.5.29/webapps/jsp-examples/light/login.jsp There fore i will have to use following url to access it. localhost:8080/jsp-examples/light/login.jsp How would i make this little shorter like. localhost:8080/login.jsp I m using... (13 Replies)
Discussion started by: pinga123
13 Replies

5. Shell Programming and Scripting

Insert a function in a jsp file using Shell scripting

Greetings to all.I am new to the forum as well as to UNIX as well.I have a jsp file which has the following selectedStartMonth = request.getParameter( "startMonth" ); selectedStartDay = request.getParameter( "startDay" ); selectedStartYear = request.getParameter( "startYear" );... (3 Replies)
Discussion started by: 20033716
3 Replies

6. AIX

HACMP LV size is not reflecting

Hi i increased the lv size using smit hacmp. but, the new size is not reflecting.. why?. the pp size is 512 MB. before it was 4 PP's. i increased to 10 PP's. when i type df -m /xxx.. it is showing 2GB only. see the info below.. root@db:/ > df -m /xxx/xxx Filesystem MB blocks Free... (2 Replies)
Discussion started by: honeym210
2 Replies

7. Solaris

mount point not reflecting actual utilization.

HI , I could see in df -k output that a mount point is 100% full. But i could not find any files with huge size that can be removed. So, i have umounted and mounted the filesystem again. Now, in my df -k output i could see that th eutilization is only 7%. Can anyone please suggest what... (3 Replies)
Discussion started by: sag71155
3 Replies

8. Shell Programming and Scripting

Can we call JSP file from Unix.if so how.Please help me.Im newbie to Unix

Hi Can we call a jsp page from Unix.if so please let me know how we can.. thanks for the help in advance... thanks kumar (0 Replies)
Discussion started by: mailsukumar
0 Replies

9. Solaris

Why are the changes done to fs-root, not reflecting?

Hi all, I am trying to modify the file fs-root (on belenix). Here is the problem.. I just wanted to check whether any modifications done to the file will be reflected when its booted up, so just echoed a statement and saved it back to the cd and then booted it.. Unfortunately it did not... (0 Replies)
Discussion started by: wrapster
0 Replies

10. Shell Programming and Scripting

How do i check if changes were made to a file using vi

okay, heres the thing I'm creating a script that I can use to create users. no, this is not a homework assignment or whatever it may seem. i'm just trying to master shell programming. how can I pass arguments in a file to useradd????? when i say arguments, I mean, all the arguments and... (1 Reply)
Discussion started by: TRUEST
1 Replies
Login or Register to Ask a Question