当弹簧控制器处理请求时,服务未连线:
@Controller
@RequestMapping(value = "/login")
public class LoginController {
@Inject
private AccountService accountService;
@RequestMapping(method = RequestMethod.POST)
public String handleLogin(HttpServletRequest request, HttpSession session){
try {
...
//Next line throws NullPointerException, this.accountService is null
Account account = this.accountService.login(username, password);
} catch (RuntimeException e) {
request.setAttribute("exception", e);
return "login";
}
}
}
AccountService及其唯一的实现在模块service
中定义为:
package com.savdev.springmvcexample.service;
...
public interface AccountService {
...
package com.savdev.springmvcexample.service;
@Service("accountService")
@Repository
@Transactional
public class AccountServiceImpl implements AccountService {
Web配置由位于web
模块中的文件加载:
package com.savdev.springmvcexample.web.config;
public class SpringMvcExampleWebApplicationInitializer implements WebApplicationInitializer
{
@Override
public void onStartup(ServletContext servletContext) throws ServletException {
registerDispatcherServlet(servletContext);
}
private void registerDispatcherServlet(final ServletContext servletContext) {
WebApplicationContext dispatcherContext = createContext(WebMvcContextConfiguration.class);
...
}
private WebApplicationContext createContext(final Class<?>... annotatedClasses) {
AnnotationConfigWebApplicationContext context = new AnnotationConfigWebApplicationContext();
context.register(annotatedClasses);
return context;
}
将包扫描到发现bean的WebMvcContextConfiguration文件:
@Configuration
@EnableWebMvc
@ComponentScan(basePackages = { "com.savdev.springmvcexample.web", "com.savdev.springmvcexample.service" })
public class WebMvcContextConfiguration extends WebMvcConfigurerAdapter {
@Bean
public ViewResolver viewResolver() {
InternalResourceViewResolver viewResolver = new InternalResourceViewResolver();
viewResolver.setOrder(1);
viewResolver.setPrefix("/WEB-INF/views/");
viewResolver.setSuffix(".jsp");
return viewResolver;
}
}
加载此类,导致根据InternalResourceViewResolver逻辑使用视图解析。结果,扫描了“com.savdev.springmvcexample.web”,找到了处理请求的控制器。
扫描了“com.savdev.springmvcexample.service”,但它在另一个模块中,我不知道它是不是一个问题,但我没有收到任何错误。
更新:
@JBNizet,module - 表示maven multimodule项目中的模块。我删除了@Repository,现在我在测试中遇到错误:
NoSuchBeanDefinitionException:没有类型的限定bean 找到依赖的[javax.sql.DataSource]。
这意味着,这意味着弹簧轮廓未被激活。仅为配置文件加载DataSource。
在网络基础架构中,我通过以下方式管理配置文件:
public class SpringMvcExampleProfilesInitializer implements ApplicationContextInitializer<ConfigurableWebApplicationContext> {
@Override
public void initialize(ConfigurableWebApplicationContext ctx) {
ConfigurableEnvironment environment = ctx.getEnvironment();
List<String> profiles = new ArrayList<String>(getProfiles());
if( profiles == null || profiles.isEmpty() )
{
throw new IllegalArgumentException("Profiles have not been configured");
}
environment.setActiveProfiles(profiles.toArray( new String[0]));
}
//TODO add logic
private Collection<String> getProfiles() {
return Lists.newArrayList("file_based", "test_data");
}
}
如果我没错,在加载Spring ApplicationContext之前使用SpringMvcExampleProfilesInitializer。它是自动生成的。没有必要为此配置任何其他内容。但它不起作用。如果我错了,请修理我。
请注意,初始化程序具有以下签名:
SpringMvcExampleProfilesInitializer implements ApplicationContextInitializer<ConfigurableWebApplicationContext>
在配置DispatcherServlet时,我可以使用以下命令设置它:
setContextInitializers(ApplicationContextInitializer<ConfigurableApplicationContext>... contextInitializers)
如何设置setContextInitializers但传递实现ApplicationContextInitializer<ConfigurableWebApplicationContext>
的内容,而不是ApplicationContextInitializer<ConfigurableApplicationContext>
答案 0 :(得分:0)
@Inject需要在类路径上存在JSR 330 jar。它可能是在编译时可见但在运行时不可见。
试试这个:
@Autowired(required=true)
private AccountService accountService;
如果这不起作用,则意味着未正确扫描Bean AccountServiceImpl。
如果它确实有效,则表示@Inject支持存在问题(可能是运行时丢失的jar)。
如果扫描无效,请尝试通过xml进行扫描:
<context:component-scan base-package="com.savdev.springmvcexample.service" />
你能回复: