首页 \ 问答 \ 热部署不使用IntelliJ IDEA和Wildfly 8.2.0(Hot deploy not working with IntelliJ IDEA and Wildfly 8.2.0)

热部署不使用IntelliJ IDEA和Wildfly 8.2.0(Hot deploy not working with IntelliJ IDEA and Wildfly 8.2.0)

我目前正在尝试在IntelliJ IDEA 14 Wildfly 8.2.0上设置hot deployment

我的设置是:

Wildfly 8.2.0 :启用Deployment scannersAuto-deploy ZippedAuto-deploy Exploded设置为true, scan interval设置为2000

IntelliJ IDEA 14On update actionOn frame deactivation都设置为Update classes和resources

但它仍然无法正常工作。 我必须重新部署应用程序来更新java文件。

编辑:

[standalone@localhost:9990 /] /subsystem=deployment-scanner:read-resource(recursive=true)
{
    "outcome" => "success",
    "result" => {"scanner" => {"default" => {
        "auto-deploy-exploded" => true,
        "auto-deploy-xml" => true,
        "auto-deploy-zipped" => true,
        "deployment-timeout" => 600,
        "path" => "deployments",
        "relative-to" => "jboss.server.base.dir",
        "runtime-failure-causes-rollback" => false,
        "scan-enabled" => true,
        "scan-interval" => 2000
    }}}

I'm currently trying to set up hot deployment on Wildfly 8.2.0 in IntelliJ IDEA 14.

My settings are:

Wildfly 8.2.0: Deployment scanners enabled, Auto-deploy Zipped and Auto-deploy Exploded set to true and scan interval is set to 2000

IntelliJ IDEA 14: On update action and On frame deactivation both set to Update classes and resources

But it's still not working. I have to redeploy the application to update the java files.

Edit:

[standalone@localhost:9990 /] /subsystem=deployment-scanner:read-resource(recursive=true)
{
    "outcome" => "success",
    "result" => {"scanner" => {"default" => {
        "auto-deploy-exploded" => true,
        "auto-deploy-xml" => true,
        "auto-deploy-zipped" => true,
        "deployment-timeout" => 600,
        "path" => "deployments",
        "relative-to" => "jboss.server.base.dir",
        "runtime-failure-causes-rollback" => false,
        "scan-enabled" => true,
        "scan-interval" => 2000
    }}}

原文:https://stackoverflow.com/questions/29798167
更新时间:2023-03-19 18:03

最满意答案

stop = set(stopwords.words('english'))
stop.(".")

frequency = {k:v for k,v in frequency.items() if v>1 and k not in stop}

虽然stop仍然是一set ,但在理解时检查frequency字典的键。 之后您仍然可以再次停止列表。

我将其保留为一组的原因是因为搜索集比搜索列表更有效。


stop = set(stopwords.words('english'))
stop.(".")

frequency = {k:v for k,v in frequency.items() if v>1 and k not in stop}

While stop is still a set, check the keys of your frequency dictionary when doing the comprehension. You can still make stop a list again afterwards.

The reason I keep it as a set is because it is much more efficient to search sets than it is to search lists.

相关问答

更多
  • 要将自定义停用词添加到Spacy中,您可以按照此处给出的解决方案: 使用spacy添加/移除停用词 。 现在在其他地方自动获取建议停用词的列表,您可以使用NLTK包计算词频和文档频率(tf-idf),然后定义转码。 如果您有任何疑问,请不要犹豫,以发表评论。 祝你好运! To add custom stopwords into Spacy you can follow the solution given here: Add/remove stop words with spacy . Now in oth ...
  • 你尝试谷歌搜索? 我得到的热门点击包含停用词列表或链接到所述列表的堆栈溢出帖子: 这里 和这里 和这里 Did you try googling? The top hits I get either contain stopword lists or are stack overflow posts that link to said lists: here and here and here
  • 我认为你不能直接从句子中删除stopwords词。 您必须首先将每个单词的句子拆分出来,或使用nltk.word_tokenize拆分句子。 对于每个单词,您检查它是否在停用词列表中。 这里是一个例子: import nltk from nltk.corpus import stopwords stopwords_en = set(stopwords.words('english')) sents = nltk.sent_tokenize("This is an example sentence. We ...
  • 所以我终于找到了问题所在。 模式文件正在过滤掉停用词。 问题是PorterstemFilterfactory阻止关键字如“一”到“开”和“使用”到“我们”并索引它们使它看起来像停用词没有被过滤掉。 我不知道这是Porterstem中的错误还是假设是这样的。 So I finally figured out the problem. The schema file is correctly filtering out the stopwords. The problem is the PorterstemFi ...
  • stop = set(stopwords.words('english')) stop.(".") frequency = {k:v for k,v in frequency.items() if v>1 and k not in stop} 虽然stop仍然是一set ,但在理解时检查frequency字典的键。 之后您仍然可以再次停止列表。 我将其保留为一组的原因是因为搜索集比搜索列表更有效。 stop = set(stopwords.words('english')) stop.(".") fr ...
  • 您的问题不是DocumentTermMatrix将“is”和“in”视为停用词,而是因为它们是短于3个字符的词。 标记器的默认值是将长度为3到无限长的字符串视为单词,即排除短于3的其他字符串。 您可以按照如下所示修改您的控件,以包含单字母向前的单词 matrix <- DocumentTermMatrix(corpus,control=list(stopwords=FALSE, wordLengths=c(1, ...
  • 目前, graphlab版本1.7.1 ,只有英文停用词可用。 傻我。 尝试后: graphlab.text_analytics.stopwords(lang='fr') [OUT]: --------------------------------------------------------------------------- NotImplementedError Traceback (most recent call last)
  • 首先对文本进行标记,然后从停用词中清除它。 标记器通常识别标点符号。 import nltk text = 'Son, if you really want something in this life,\ you have to work for it. Now quiet! They are about\ to announce the lottery numbers.' stopwords = ['in', 'to', 'for', 'the'] sents = ...
  • 将你的循环改为 for (int j = 0; j < stopwords.length; j++) { if (wordsList.contains(stopwords[j])) { wordsList.remove(stopwords[j]);//remove it } } 如果wordsList包含来自stopwords词的任何停用词,则将其删除。 Cha ...
  • MySQL不支持不同列的不同停止列表,也不能在搜索之前暂时取消或启用停止列表(不重建索引)。 但是这里有一些想法可以解决这个问题: 如果您的标准搜索确实只应该查找完整的单词,例如隐含的示例,那么例如用户输入“单词”将导致类似match(title) against ('+the +word' in boolean mode)的查询match(title) against ('+the +word' in boolean mode) ,而相应的自动完成搜索将导致match(title) against ('+ ...

相关文章

更多

最新问答

更多
  • 您如何使用git diff文件,并将其应用于同一存储库的副本的本地分支?(How do you take a git diff file, and apply it to a local branch that is a copy of the same repository?)
  • 将长浮点值剪切为2个小数点并复制到字符数组(Cut Long Float Value to 2 decimal points and copy to Character Array)
  • OctoberCMS侧边栏不呈现(OctoberCMS Sidebar not rendering)
  • 页面加载后对象是否有资格进行垃圾回收?(Are objects eligible for garbage collection after the page loads?)
  • codeigniter中的语言不能按预期工作(language in codeigniter doesn' t work as expected)
  • 在计算机拍照在哪里进入
  • 使用cin.get()从c ++中的输入流中丢弃不需要的字符(Using cin.get() to discard unwanted characters from the input stream in c++)
  • No for循环将在for循环中运行。(No for loop will run inside for loop. Testing for primes)
  • 单页应用程序:页面重新加载(Single Page Application: page reload)
  • 在循环中选择具有相似模式的列名称(Selecting Column Name With Similar Pattern in a Loop)
  • System.StackOverflow错误(System.StackOverflow error)
  • KnockoutJS未在嵌套模板上应用beforeRemove和afterAdd(KnockoutJS not applying beforeRemove and afterAdd on nested templates)
  • 散列包括方法和/或嵌套属性(Hash include methods and/or nested attributes)
  • android - 如何避免使用Samsung RFS文件系统延迟/冻结?(android - how to avoid lag/freezes with Samsung RFS filesystem?)
  • TensorFlow:基于索引列表创建新张量(TensorFlow: Create a new tensor based on list of indices)
  • 企业安全培训的各项内容
  • 错误:RPC失败;(error: RPC failed; curl transfer closed with outstanding read data remaining)
  • C#类名中允许哪些字符?(What characters are allowed in C# class name?)
  • NumPy:将int64值存储在np.array中并使用dtype float64并将其转换回整数是否安全?(NumPy: Is it safe to store an int64 value in an np.array with dtype float64 and later convert it back to integer?)
  • 注销后如何隐藏导航portlet?(How to hide navigation portlet after logout?)
  • 将多个行和可变行移动到列(moving multiple and variable rows to columns)
  • 提交表单时忽略基础href,而不使用Javascript(ignore base href when submitting form, without using Javascript)
  • 对setOnInfoWindowClickListener的意图(Intent on setOnInfoWindowClickListener)
  • Angular $资源不会改变方法(Angular $resource doesn't change method)
  • 在Angular 5中不是一个函数(is not a function in Angular 5)
  • 如何配置Composite C1以将.m和桌面作为同一站点提供服务(How to configure Composite C1 to serve .m and desktop as the same site)
  • 不适用:悬停在悬停时:在元素之前[复制](Don't apply :hover when hovering on :before element [duplicate])
  • 常见的python rpc和cli接口(Common python rpc and cli interface)
  • Mysql DB单个字段匹配多个其他字段(Mysql DB single field matching to multiple other fields)
  • 产品页面上的Magento Up出售对齐问题(Magento Up sell alignment issue on the products page)