spring을 쓰면서 ajax로 데이터를 다시 받아오려고 합니다

새로고침 버튼을 누르면 reload라는 함수를 눌러서 눌렀을때의 현재 시간을 다시 받아오려고 하는데요
버튼을 time()이라는 함수를 호출하고 함수에다가 ajax를 써서 url경로를 test.html로 설정
서블릿에서는 test.html주소를 받으면 ReloadController로 전달해서 데이터를 받아오는 형식으로 구현했습니다.
문제는 ajax가 데이터를 받아오지 못하고 있습니다.
오류 처리를 해봤는데 404에러가 나오네요
오류로그는 나오지 않습니다.
답답하네요 도와주세요


sample.jsp
----------------------------------------------------
function reload() {
Ctimeload();
<!-- Ctimeload()는 카운트 타이머를 초기화 시키는 거고 Time()은 아래에 있는 ajax입니다-->
Time();
}
function Time() {
alert(2);
$.ajax({
url : 'time.html',
dataType : "json",
success : function(data) {
alert("data"+data);
$('#nowtime').html(data);
},
error : function(x, e) {
if (x.status == 0) {
alert('You are offline!!n Please Check Your Network.');
} else if (x.status == 404) {
alert('Requested URL not found.');
} else if (x.status == 500) {
alert('Internel Server Error.');
} else if (e == 'parsererror') {
alert('Error.nParsing JSON Request failed.');
} else if (e == 'timeout') {
alert('Request Time out.');
} else {
alert('Unknow Error.n' + x.responseText);
}
}
});
}


<table>
<tr>
<td width="300">Today Trend DashBoard</td>
<td width="200" style="size: 1"><FONT id="nowtime" SIZE='2'>${requestScope.nowTime}</FONT></td>
<td><input type="button" value="새로고침" /></td>
<!--  위에 버튼을 누르면 reload()함수를 호출합니다 -->
<td width="100"><input type="text" name="counttimer"></td>
</tr>
</table>
------------------------------------------------------------------------------------





sampletest2-servlet.xml
------------------------------------------------------
<bean id="handlerMapping"
class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
<property name="mappings">
<value>
/sampletest2.html=SampleController
/time.html = ReloadController
<!--  /dataload.html = ReloadController1 -->
</value>
</property>
</bean>
-----------------------------------------------------

ReloadController.java
---------------------------------------------------------
public class ReloadController extends MultiActionController{
private SampleDao sampleDao;
//SampleDao.java라는 Class파일에 쿼리문을 사용하여 대이터를 가지고있습니다.

public void setSampleDao(SampleDao sampledao){
this.sampleDao = sampledao;
}
//제가 원하는건 아래에 있는 getTime에서 데이터를 반환해야하는데 이쪽으로 오지를 못하고있습니다.
//value값도 time을 주어서 ajax에서 보내는  url주소와 동일하게 설정을 하였는데도 데이터를 받아오지 못합니다.
@RequestMapping(value = "/time", method = RequestMethod.GET)
@ResponseBody
public String getTime(){
String time = this.sampleDao.findTime();
return time;
}
}
-------------------------------------------------------

갤러리 고수님들의 도움 부탁드리겠습니다.