这是我为回购所做的准备:
@RepositoryRestResource(collectionResourceRel=“people”,path=“people”)公共接口PersonRepo扩展了分页和排序存储库
http://localhost:8080/system/people是我想要访问的,在哪里“http://localhost:8080/system“是spring MVC项目的基本url
试试看
@RequestMapping(value="/people/" , method=RequestMethod.GET)
public interface PersonRepo extends PagingAndSortingRepository<Person, Long> {
List<Person> findByName(@Param("name") String name);
}
我已经找到了解决办法,根据http://docs.spring.io/spring-data/rest/docs/2.3.0.RELEASE/reference/html/#getting-开始。简介,我为数据访问配置添加了一个类:
@Configuration public class customizedRestMVC配置扩展repositoryRestMVC配置{@Override public RepositoryRestConfiguration配置(){RepositoryRestConfiguration配置=super.config();config.setBasePath(“/api”);return config;}
此外,我还在spring应用程序配置类中添加了
@Import(CustomizedRestMVCCConfiguration.class)
。现在每当我做一件事http://localhost:8080/system/api/people调用时,可以检索数据库条目。
问题内容: 我正在尝试设置一个Spring MVC项目。我添加了一个调度程序servlet,一个jsp并设置了web.xml文件。但我不断 WARN org.springframework.web.servlet.PageNotFound-在DispatcherServlet中,名称为“ HelloWeb”的URI [/safesite/WEB-INF/jsp/hello.jsp]的HTTP请求未
问题内容: 我正在尝试设置一个Spring MVC项目。我添加了一个调度程序servlet,一个jsp并设置了web.xml文件。但我不断 WARN org.springframework.web.servlet.PageNotFound-在DispatcherServlet中,名称为“ HelloWeb”的URI [/safesite/WEB-INF/jsp/hello.jsp]的HTTP请求未
Dispatcher servlet(servlet-context.xml) http://www.springframework.org/schema/mvc/spring-mvc.xsd http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xs
这是我的代码。我不知道这有什么问题。
我在我的SpringMVC项目中得到了这个错误。我必须在浏览器中手动添加完整的路径来运行代码,但我不能直接运行它。 web.xml:
这是我的Spring安全豆 这是我的MVC-dispatcher servlet 这是我的web.xml