大神求助 非常棘手的一个问题 关于tomcat启动配置

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了大神求助 非常棘手的一个问题 关于tomcat启动配置相关的知识,希望对你有一定的参考价值。

参考技术A <servlet>
<description>spring mvc servlet</description>
<servlet-name>springMvc</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<description>spring mvc 配置文件</description>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:spring-mvc.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<context:component-scan base-package="org.jeecgframework.web.*">
<context:exclude-filter type="annotation" expression="org.springframework.stereotype.Service" />
</context:component-scan>
<context:component-scan base-package="com.ajjx.*">
<context:exclude-filter type="annotation" expression="org.springframework.stereotype.Service" />
</context:component-scan>
@Service("systemService")
@Transactional
public class SystemServiceImpl extends CommonServiceImpl implements SystemService
@Autowired
private JeecgDictDao jeecgDictDao;
public TSUser checkUserExits(TSUser user) throws Exception
return this.commonDao.getUserByUserIdAndUserNameExits(user);

public List<DictEntity> queryDict(String dicTable, String dicCode,String dicText)
List<DictEntity> dictList = null;
//step.1 如果没有字典表则使用系统字典表
if(StringUtil.isEmpty(dicTable))
dictList = jeecgDictDao.querySystemDict(dicCode);
for(DictEntity t:dictList)
t.setTypename(MutiLangUtil.getMutiLangInstance().getLang(t.getTypename()));

else
dicText = StringUtil.isEmpty(dicText, dicCode);
dictList = jeecgDictDao.queryCustomDict(dicTable, dicCode, dicText);

return dictList;

以上是关于大神求助 非常棘手的一个问题 关于tomcat启动配置的主要内容,如果未能解决你的问题,请参考以下文章

tomcat成功启动,但是访问页面出现404(localhost:8082/zczh/),求助java大神,谢谢

我的Tomcat无法启动,点击startup.bat出现下图中所示情况,不知道该如何解决,大神帮帮忙

求助各位java大神,我的eclipse里怎么也无法配置tomcat7 到底怎么回事啊,纠结一上午了

求助前端大神!关于sublime text使用的一些问题

求助各位大神,小弟初学IBM DB2,求助关于数据库创建问题,多谢!!

eclipse中tomcat无法正常启动求助